/* ========== 基础样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e55b2b;
    --primary-light: #f0f4ff;
    --primary-dark: #c94a1e;
    --text: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg: #f5f7fa;
    --bg-white: #fff;
    --border: #e8ecf1;
    --border-light: #f0f2f5;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
}

a {
    /*color: var(--primary);*/
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* 重置易优pagelist默认黑点、ul li样式 */
.pagination ul {
    display: flex;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.pagination ul li {
    list-style: none !important;
}
/* 清除默认小圆点 */
.pagination li::marker,
.pagination li:before {
    display: none !important;
    content: "" !important;
}
/* 统一按钮样式，匹配网站 #3498db 蓝色 */
.pagination a,
.pagination span {
    min-width: 38px;
    height: 38px;
    line-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
/* 当前页码激活色 */
.pagination a.active,
.pagination span.current {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}
/* 鼠标悬浮 */
.pagination a:hover {
    border-color: #3498db;
    color: #3498db;
    background: #f0f7ff;
}
/* 禁用的上一页/下一页（灰色不可点） */
.pagination span.disabled {
    color: #ccc;
    border-color: #f0f0f0;
    cursor: not-allowed;
    background: #f9f9f9;
}

/* ========== 头部导航 ========== */
/*.header {*/
/*    background: var(--bg-white);*/
/*    box-shadow: var(--shadow);*/
/*    position: sticky;*/
/*    top: 0;*/
/*    z-index: 100;*/
/*}*/

/*.header-content {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    height: 60px;*/
/*}*/

/*.logo {*/
/*    font-size: 22px;*/
/*    font-weight: 700;*/
/*    color: var(--primary);*/
/*    letter-spacing: -0.5px;*/
/*}*/

/*.logo:hover {*/
/*    color: var(--primary-dark);*/
/*}*/

.nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav a:hover {
    color: var(--primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

/* ========== 面包屑导航 ========== */
.breadcrumb {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-lighter);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text);
}

/* ========== 主体布局 ========== */
.main {
    padding: 32px 0 60px;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* ========== 文章卡片 ========== */
.article {
    background: var(--bg-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 98%;
    display: flex;
    flex-direction: column;
}

.article-header {
    padding: 40px 48px 28px;
    border-bottom: 1px solid var(--border-light);
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 14px;
}

.meta-item svg {
    color: var(--text-lighter);
    flex-shrink: 0;
}

/* ========== 文章内容 ========== */
.article-content {
    padding: 32px 48px 48px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.article-content.collapsed {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

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

.article-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 16px;
    color: var(--text);
}

.article-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-content li strong {
    color: var(--primary);
}

/* ========== 快速行动卡片 ========== */
.quick-action-card {
    background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 0 0 32px 0;
    box-shadow: 0 4px 16px rgba(229, 91, 43, 0.15);
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(229, 91, 43, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.action-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.action-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.badge {
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(229, 91, 43, 0.3);
}

.action-prices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.price-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.price-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(229, 91, 43, 0.1);
}

.face-value {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 6px;
}

.recover-value {
    display: block;
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(229, 91, 43, 0.3);
    transition: var(--transition);
    flex: 1;
}

.primary-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(229, 91, 43, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.primary-btn svg {
    flex-shrink: 0;
}

.secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    flex: 0 0 auto;
}

.secondary-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.action-note {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
    text-align: center;
}

/* ========== 图片 ========== */
.article-image {
    margin: 28px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    display: block;
    cursor: zoom-in;
    transition: var(--transition);
}

.article-image img:hover {
    transform: scale(1.02);
}

.article-image figcaption {
    padding: 10px 16px;
    background: var(--bg);
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
}

/* ========== 表格 ========== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

thead th {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--primary);
}

tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

tbody tr:hover {
    background: var(--primary-light);
}

tbody td a {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(229, 91, 43, 0.2);
}

tbody td a:hover {
    background: var(--primary-dark);
    box-shadow: 0 3px 10px rgba(229, 91, 43, 0.3);
    transform: translateY(-1px);
    color: #fff;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.table-note {
    color: var(--text-lighter);
    font-size: 13px;
    margin-top: -16px !important;
}

/* ========== 相关阅读 ========== */
.related-reading {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 28px 0;
}

.related-reading h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
    margin-top: 0;
}

.related-reading ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-reading li {
    margin-bottom: 8px;
}

.related-reading a {
    color: var(--primary-dark);
    font-size: 14px;
}

.related-reading a:hover {
    text-decoration: underline;
}

/* ========== 案例研究 ========== */
.case-study {
    background: #fef9f3;
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
}

.case-study p {
    margin: 0 !important;
    color: var(--text-light);
}

/* ========== 常见问题 ========== */
.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 16px 0;
    border-left: 3px solid var(--primary);
}

.faq-item h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: var(--text);
}

.faq-item p {
    margin: 0 !important;
    color: var(--text-light);
}

/* ========== CTA行动号召 ========== */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 36px 0 0;
}

.cta-box h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #fff;
}

.cta-box p {
    margin: 0 0 24px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

/* ========== 文章底部 ========== */
.article-footer {
    padding: 32px 48px 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.article-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 标签区域 */
.article-tags {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tags-label {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
    padding-top: 6px;
    white-space: nowrap;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 相关链接 */
.related-links {
    padding-top: 20px;
    border-top: 1px dashed var(--border);
    font-size: 14px;
    color: var(--text-light);
}

.related-links a {
    margin: 0 12px;
    color: var(--text-light);
    padding: 4px 0;
}

.related-links a:hover {
    color: var(--primary);
}

/* 上下篇导航 */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

.prev-article,
.next-article {
    display: flex;
    flex-direction: column;
}

.prev-article span,
.next-article span {
    font-size: 12px;
    color: var(--text-lighter);
    margin-bottom: 4px;
}

.prev-article a,
.next-article a {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.prev-article a:hover,
.next-article a:hover {
    color: var(--primary);
}

.next-article {
    text-align: right;
}

/* ========== 侧边栏 ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: start;
}

.widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    transition: var(--transition);
}

.widget:hover {
    box-shadow: var(--shadow-hover);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* 文章展开收起按钮 */
.article-toggle {
    display: block;
    width: 100%;
    margin: 0;
    padding: 16px;
    background: #f0f2f5;
    border: none;
    border-radius: 0;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.article-toggle:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.article-toggle .arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.article-toggle.expanded .arrow {
    transform: rotate(180deg);
}

.article-toggle.expanded {
    border-radius: 0;
    margin-top: 16px;
}

/* 文章标签 */
.article-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-tags li {
    border-bottom: 1px solid var(--border);
}

.article-tags li:last-child {
    border-bottom: none;
}

.article-tags a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.article-tags a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.article-tags a::after {
    content: '›';
    font-size: 18px;
    color: var(--text-lighter);
    transition: var(--transition);
}

.article-tags a:hover::after {
    color: var(--primary);
}

/* 相关文章列表 */
.related-list {
    list-style: none;
}

.related-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.related-list a {
    display: block;
}

.related-list .title {
    display: block;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 6px;
}

.related-list .date {
    font-size: 12px;
    color: var(--text-lighter);
}

.related-list a:hover .title {
    color: var(--primary);
}

/* 热门卡回收 */
.hot-cards {
    list-style: none;
}

.hot-cards li {
    margin-bottom: 12px;
}

.hot-cards li:last-child {
    margin-bottom: 0;
}

.hot-cards a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.hot-cards a:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateX(4px);
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.arrow-icon {
    color: var(--text-lighter);
    flex-shrink: 0;
    transition: var(--transition);
}

.hot-cards a:hover .arrow-icon {
    color: var(--primary);
    transform: translateX(2px);
}

/* 快捷回收 */
.contact-widget p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.quick-links {
    list-style: none;
    margin-bottom: 20px;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}

.quick-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* 回收流程 */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-content strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.step-content span {
    font-size: 13px;
    color: var(--text-light);
}

.process-btn {
    display: block;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.process-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* 卡券介绍 */
.card-intro {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px;
}

.intro-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
}

.feature-icon {
    color: var(--primary);
    font-weight: 700;
}

.intro-links {
    display: flex;
    gap: 10px;
}

.intro-links a {
    display: block;
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.intro-links a:first-child {
    background: var(--bg-secondary);
    color: var(--primary);
}

.intro-links a:hover {
    background: var(--primary-dark);
    color: #fff;
}

.intro-links a:first-child:hover {
    background: var(--primary);
    color: #fff;
}

/* 卡券百科 */
.wiki-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wiki-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.wiki-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(229, 91, 43, 0.15);
}

.wiki-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.wiki-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.wiki-item:hover .wiki-name {
    color: var(--primary);
}

/* ========== 标签大全区域 ========== */
.all-tags {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e8ecf1;
}

.tags-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #e55b2b 0%, #c94a1e 100%);
    border-radius: 2px;
}

/* 标签网格布局：自适应流式排列 */
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

/* 单个标签样式：宽度随文字自适应，完整显示 */
.tag-link {
    display: inline-block;
    padding: 7px 16px;
    background: #ffffff;
    color: #5a6c7d;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.tag-link:hover {
    background: linear-gradient(135deg, #e55b2b 0%, #c94a1e 100%);
    color: #ffffff;
    border-color: #e55b2b;
    box-shadow: 0 2px 8px rgba(229, 91, 43, 0.2);
}

/* 隐藏超出数量的标签 */
.tag-link.hidden-tag {
    display: none;
}

/* 标签操作按钮区域 */
.tags-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

/* 展开/收起按钮 */
.tags-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #ffffff;
    color: #5a6c7d;
    border: 1px solid #d1d9e0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.tags-toggle-btn:hover {
    border-color: #e55b2b;
    color: #e55b2b;
    box-shadow: 0 2px 8px rgba(229, 91, 43, 0.15);
    transform: translateY(-1px);
}

.tags-toggle-btn:active {
    transform: translateY(0);
}

.toggle-arrow {
    transition: transform 0.3s ease;
}

.tags-toggle-btn.expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* 查看更多标签链接 */
.tags-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #e55b2b 0%, #c94a1e 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(229, 91, 43, 0.2);
}

.tags-more-link:hover {
    background: linear-gradient(135deg, #c94a1e 0%, #a83d19 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(229, 91, 43, 0.3);
    transform: translateY(-2px);
}

.tags-more-link svg {
    transition: transform 0.3s ease;
}

.tags-more-link:hover svg {
    transform: translateX(3px);
}

/* 标签展开动画 */
.tag-link.show-animate {
    animation: tagFadeIn 0.4s ease forwards;
}

@keyframes tagFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .all-tags {
        padding: 24px 20px;
        margin-top: 32px;
    }
    
    .tags-title {
        font-size: 18px;
    }
    
    .tags-grid {
        gap: 8px;
    }
    
    .tag-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .tags-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .tags-toggle-btn,
    .tags-more-link {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}


/* ========== 页脚 ========== */
.footer {
    background: #2d3238;
    color: #a0a8b0;
    padding: 48px 0 24px;
}

.footer a {
    color: #a0a8b0;
}

.footer a:hover {
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #404850;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* ========== 图片放大弹窗 ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
    animation: fadeIn 0.2s ease;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    animation: zoomIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

/* ========== 响应式设计 ========== */
@media (max-width: 992px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-widget {
        grid-column: span 2;
    }

    .article-header,
    .article-content,
    .article-footer {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .nav ul {
        gap: 20px;
    }

    .article-title {
        font-size: 22px;
    }

    .quick-action-card {
        padding: 20px 24px;
    }

    .action-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .action-prices {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .secondary-btn {
        flex: 1;
    }

    .article-header,
    .article-content,
    .article-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .article-content {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .contact-widget {
        grid-column: span 1;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }

    .next-article {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    table {
        font-size: 13px;
    }

    td, th {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
        gap: 12px;
    }

    .nav ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-title {
        font-size: 20px;
    }

    .article-header,
    .article-content,
    .article-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-box {
        padding: 24px;
    }

    .tags-list {
        gap: 8px;
    }

    .tag {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    /* 重置易优pagelist默认黑点、ul li样式 */
.pagination ul {
    display: flex;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.pagination ul li {
    list-style: none !important;
}
/* 清除默认小圆点 */
.pagination li::marker,
.pagination li:before {
    display: none !important;
    content: "" !important;
}
/* 统一按钮样式，匹配网站 #3498db 蓝色 */
.pagination a,
.pagination span {
    min-width: 38px;
    height: 38px;
    line-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
/* 当前页码激活色 */
.pagination a.active,
.pagination span.current {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}
/* 鼠标悬浮 */
.pagination a:hover {
    border-color: #3498db;
    color: #3498db;
    background: #f0f7ff;
}
/* 禁用的上一页/下一页（灰色不可点） */
.pagination span.disabled {
    color: #ccc;
    border-color: #f0f0f0;
    cursor: not-allowed;
    background: #f9f9f9;
}
}


/* ========== 统一文章列表 + 分页视觉尺寸 ========== */
/* 1、让分页容器宽度和文章列表完全一致，统一内边距 */
.tab-content .article-list {
    padding: 0;
    border-bottom: none;
}
.tab-content .pagination {
    width: 100%;
    padding: 24px 0 0 0;
    margin-top: 0;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* 2、清除易优pagelist原生ul黑点、默认边距 */
.pagination ul {
    display: flex;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    justify-content: center;
}
.pagination ul li {
    list-style: none !important;
}
.pagination li::marker,
.pagination li:before {
    display: none !important;
    content: "" !important;
}

/* 3、统一分页按钮高度，和文章行高视觉匹配 */
.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 14px;
}

/* 4、主题色统一，和全站蓝色匹配 */
.pagination a.active,
.pagination span.current {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}
.pagination a:hover {
    border-color: #3498db;
    color: #3498db;
    background: #f0f7ff;
}
.pagination span.disabled {
    color: #ccc;
    border-color: #f0f0f0;
    cursor: not-allowed;
    background: #f9f9f9;
}

/* 5、移动端自适应，缩小分页按钮 */
@media (max-width:768px){
    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 34px;
        line-height: 34px;
        padding: 0 10px;
        font-size: 13px;
    }
    .tab-content .pagination {
        padding-top: 16px;
    }
}




/* 清除分页黑点、旧ul默认样式 */
body .pagination ul {
    display: flex;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    justify-content: center;
}
body .pagination ul li {
    list-style: none !important;
}
body .pagination li::marker,
body .pagination li:before {
    display: none !important;
    content: "" !important;
}
/* 统一分页按钮尺寸，和列表视觉匹配 */
body .pagination a,
body .pagination span {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 14px;
}
body .pagination a.active,
body .pagination span.current {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}
body .pagination a:hover {
    border-color: #3498db;
    color: #3498db;
    background: #f0f7ff;
}
body .pagination span.disabled {
    color: #ccc;
    border-color: #f0f0f0;
    cursor: not-allowed;
    background: #f9f9f9;
}



/* ========== 全新简约分层列表+分页整套样式 ========== */
/* 提高权重，覆盖旧样式冲突 */


/* Tab导航优化 增加层次感 */
body .news-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid #f1f3f6;
    margin-bottom: 24px;
}
body .news-tab {
    padding: 12px 20px;
    font-size: 14px;
    color: #667292;
    background: transparent;
    border-radius: 8px 8px 0 0;
    transition: 0.24s ease;
}
body .news-tab:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.06);
}
body .news-tab.active {
    color: #3498db;
    font-weight: 500;
    position: relative;
}
body .news-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #3498db;
    border-radius: 3px 3px 0 0;
}

/* 列表外层容器统一间距 */
body .tab-content.active {
    padding-top: 0;
}
body .article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 单篇文章卡片 分层核心 */
body .article-item {
    display: flex;
    gap: 20px;
    padding: 18px;
    border-radius: 12px;
    background: #fbfcfe;
    align-items: flex-start;
    transition: all 0.25s ease;
    text-decoration: none;
}
body .article-item:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(52, 152, 219, 0.08);
}

/* 缩略图尺寸统一、精致圆角 */
body .article-img {
    width: 170px;
    height: 106px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f7;
}
body .article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
body .article-item:hover .article-img img {
    transform: scale(1.06);
}

/* 文字内容区域 分层间距 */
body .article-content {
    flex: 1;
    min-width: 0;
}
body .article-title {
    font-size: 17px;
    font-weight: 500;
    color: #1d2939;
    margin-bottom: 8px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
body .article-item:hover .article-title {
    color: #3498db;
}

/* 简介文字弱化层级 */
body .article-desc {
    font-size: 14px;
    color: #667292;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 底部信息栏 浅灰色小字区分层级 */
body .article-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #98a2b3;
}

/* 清除多余黑点圆点 */
body .article-dot {
    display: none;
}

/* ========== 分页整套统一样式 和列表宽度对齐 ========== */
body .pagination {
    width: 100%;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #f1f3f6;
    display: flex;
    justify-content: center;
}
body .pagination ul {
    display: flex;
    gap: 10px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
body .pagination ul li {
    list-style: none !important;
}
body .pagination li::marker,
body .pagination li:before {
    display: none !important;
    content: "" !important;
}

/* 分页按钮统一尺寸、圆角、主题色 */
body .pagination a,
body .pagination span {
    min-width: 42px;
    height: 42px;
    line-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    color: #475467;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.24s ease;
}
body .pagination a.active,
body .pagination span.current {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}
body .pagination a:hover {
    border-color: #3498db;
    color: #3498db;
    background: rgba(52, 152, 219, 0.06);
}
body .pagination span.disabled {
    color: #d0d5dd;
    border-color: #f2f4f7;
    background: #f9fafb;
    cursor: not-allowed;
}
/*-新增加以下--*/


