/* ============================================
   页面通用样式 - 整合自各页面的内联样式
   ============================================ */

/* ============================================
   页面标题栏
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="60" r="25" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
}

.page-header h2 {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.page-header .page-hero-breadcrumb {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 20;
}

.page-header .page-hero-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-header .page-hero-breadcrumb a:hover {
    color: #fff;
}

.page-header .page-hero-breadcrumb a i {
    font-size: 0.9rem;
}

.page-header .page-hero-breadcrumb i.fa-angle-right {
    font-size: 0.75rem;
    opacity: 0.6;
}

.page-header .page-hero-breadcrumb span {
    color: #fff;
    font-weight: 600;
}

/* ============================================
   面包屑导航
   ============================================ */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #999;
}

.breadcrumb-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: #007bff;
}

.breadcrumb-list li:last-child {
    color: #333;
    font-weight: 500;
}

/* ============================================
   侧边栏组件
   ============================================ */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #007bff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: #007bff;
}

/* ============================================
   主营业务展示
   ============================================ */
.product-showcase-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.product-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-showcase-item:hover,
.product-showcase-item.active {
    background: linear-gradient(135deg, #e7f3ff 0%, #fff 100%);
    border-color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}

.product-showcase-item:hover::before,
.product-showcase-item.active::before {
    transform: scaleX(1);
}

.product-showcase-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s;
}

.product-showcase-item:hover .product-showcase-item-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-showcase-item-info {
    flex: 1;
}

.product-showcase-item-info h4 {
    font-size: 13px;
    color: #333;
    margin-bottom: 3px;
    font-weight: 600;
    line-height: 1.3;
}

.product-showcase-item-info p {
    font-size: 11px;
    color: #888;
    margin: 0;
    line-height: 1.3;
}

/* ============================================
   热门/推荐文章
   ============================================ */
.featured-articles,
.hot-articles,
.recommended-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-article,
.hot-article-item,
.recommended-article {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.featured-article:last-child,
.hot-article-item:last-child,
.recommended-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.featured-article-thumb {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article-info,
.hot-article-info,
.recommended-article-info {
    flex: 1;
}

.featured-article-info h4,
.hot-article-info h4,
.recommended-article-info h4 {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.featured-article-info h4 a,
.hot-article-info h4 a,
.recommended-article-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.featured-article-info h4 a:hover,
.hot-article-info h4 a:hover,
.recommended-article-info h4 a:hover {
    color: #007bff;
}

.featured-article-info span,
.hot-article-info span,
.recommended-article-info span {
    font-size: 12px;
    color: #999;
}

.hot-article-info p {
    font-size: 12px;
    color: #888;
    margin: 0 0 5px 0;
    line-height: 1.4;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================
   最新文章列表
   ============================================ */
.latest-articles {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.latest-article-item {
    position: relative;
    padding: 16px 0 16px 24px;
    border-bottom: 1px solid #eee;
}

.latest-article-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #007bff;
    border-radius: 50%;
}

.latest-article-item:last-child {
    border-bottom: none;
}

.latest-article-item:hover::before {
    background: #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.latest-article-info h4 {
    font-size: 14px;
    margin: 0 0 8px 0;
    font-weight: 500;
    line-height: 1.5;
}

.latest-article-info h4 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    background: linear-gradient(to right, #333, #333) no-repeat 0 100%;
    background-size: 0 1px;
}

.latest-article-info h4 a:hover {
    color: #007bff;
    background: linear-gradient(to right, #007bff, #007bff) no-repeat 0 100%;
    background-size: 100% 1px;
}

.latest-article-info .article-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    transition: color 0.3s;
}

.latest-article-item:hover .article-desc {
    color: #666;
}

/* ============================================
   标签云
   ============================================ */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    padding: 6px 15px;
    background: #f0f0f0;
    color: #666;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-cloud a:hover {
    background: #007bff;
    color: #fff;
}

/* ============================================
   分页
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    background: #fff;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #007bff;
    color: #fff;
}

.pagination .current {
    background: #007bff;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 15px;
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   文章详情页样式
   ============================================ */
.article-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    align-self: start;
}

.article-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid #eee;
}

.article-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.article-title {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0;
}

.copy-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-link-btn:hover {
    background: var(--primary-color, #2563eb);
    border-color: var(--primary-color, #2563eb);
    color: #fff;
}

.copy-link-btn.copy-success {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #999;
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-cover {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.article-cover[src] {
    animation: none;
    background: none;
}

.article-content {
    padding: 40px;
    line-height: 1.9;
    color: #444;
    font-size: 16px;
}

.article-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #007bff;
}

.article-content h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 25px 0 12px;
}

.article-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 20px 0 10px;
}

.article-content h5,
.article-content h6 {
    font-size: 1rem;
    color: #333;
    margin: 16px 0 8px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #666;
}

.article-content code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.article-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.article-content a {
    color: var(--primary-color, #007bff);
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    max-width: 100%;
    display: table;
}

.article-content table td,
.article-content table th {
    border: 1px solid #ddd;
    padding: 10px 14px;
    font-size: 15px;
}

.article-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

.article-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 24px 0;
}

/* 文章标签 */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 40px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.article-tags span {
    font-weight: 600;
    color: #333;
}

.article-tags a {
    padding: 5px 15px;
    background: #e9ecef;
    color: #666;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.article-tags a:hover {
    background: #007bff;
    color: #fff;
}

/* 上一篇下一篇 */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.article-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.article-nav-item.prev {
    justify-content: flex-start;
}

.article-nav-item.next {
    justify-content: flex-end;
    text-align: right;
}

.article-nav-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    flex-shrink: 0;
}

.article-nav-info span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.article-nav-info strong {
    color: #333;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 相关文章 */
.related-articles {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.related-articles-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-articles-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #007bff, #0056b3);
    border-radius: 2px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.related-article-item {
    position: relative;
    padding: 16px 16px 16px 30px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.related-article-item::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #007bff;
    border-radius: 50%;
}

.related-article-item:hover::before {
    background: #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.related-article-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.5;
    transition: color 0.3s;
}

.related-article-info h4 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    background: linear-gradient(to right, #333, #333) no-repeat 0 100%;
    background-size: 0 1px;
}

.related-article-info h4 a:hover {
    color: #007bff;
    background: linear-gradient(to right, #007bff, #007bff) no-repeat 0 100%;
    background-size: 100% 1px;
}

.related-article-info .related-article-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.related-article-item:hover .related-article-desc {
    color: #666;
}

/* ============================================
   资讯卡片轮播
   ============================================ */
.info-carousel-section {
    background: #f8f9fa;
    padding: 40px 20px;
    margin: 30px 0 0;
}

.info-carousel-section>.section-header,
.info-carousel-section>.info-carousel-wrapper,
.info-carousel-section>.info-carousel-dots {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header .section-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.section-header .section-title i {
    color: #007bff;
    font-size: 22px;
}

.more-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.more-link:hover {
    color: #4a90d9;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #4a90d9;
    color: #fff;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.info-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.info-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-carousel-slide {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    min-width: 100%;
    padding: 0 50px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.info-card-image {
    position: relative;
    height: 130px;
    overflow: hidden;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.info-card:hover .info-card-image img {
    transform: scale(1.08);
}

.info-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.info-card-body {
    padding: 14px;
}

.info-card-body h3 {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.info-card-body p {
    font-size: 12px;
    color: #888;
    margin: 0 0 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-card-date {
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-card-date i {
    font-size: 10px;
}

.info-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.i-dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.i-dot.active {
    background: #007bff;
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   资讯列表页样式
   ============================================ */
.newslist-main,
.newslist-container {
    padding: 60px 0;
    background: #f8f9fa;
}

.newslist-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-content {
    flex: 1;
}

.news-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #666;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #007bff;
    background: #007bff;
    color: #fff;
}

.news-list-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left-color: #007bff;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.news-item-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.news-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-item-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-item-title a:hover {
    color: #007bff;
}

.news-item-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #e7f3ff;
    color: #007bff;
    font-size: 12px;
    border-radius: 20px;
}

.read-more {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* ============================================
   分享组件
   ============================================ */
.share-widget {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.share-widget .widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.share-widget .widget-title i {
    color: #fff;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.wechat {
    background: #07c160;
}

.share-btn.weibo {
    background: #e6162d;
}

.share-btn.qq {
    background: #12b7f5;
}

.share-btn.qzone {
    background: #febf09;
    color: #333;
}

.share-btn.copy {
    background: #666;
}

/* ============================================
   联系组件
   ============================================ */
.contact-widget {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.contact-widget .widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-widget .widget-title i {
    color: #fff;
}

.contact-widget p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-wechat {
    justify-content: center;
}

.wechat-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wechat-qrcode img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
}

.qrcode-label {
    font-size: 12px;
    opacity: 0.8;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 992px) {

    .article-container,
    .newslist-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .info-carousel-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .article-container {
        grid-template-columns: 1fr;
    }

    .article-wrap {
        order: 1;
    }

    .sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 90px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header .page-hero-breadcrumb {
        bottom: 20px;
        font-size: 0.85rem;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 20px;
        flex-wrap: wrap;
        justify-content: center;
        white-space: nowrap;
    }

    .page-header .page-hero-breadcrumb a,
    .page-header .page-hero-breadcrumb i,
    .page-header .page-hero-breadcrumb span {
        font-size: 12px;
    }

    .article-main,
    .newslist-main {
        padding: 40px 0;
    }

    .article-container {
        padding: 0 12px;
    }

    .article-header {
        padding: 20px;
    }

    .article-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .copy-link-btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .article-meta {
        gap: 15px;
        font-size: 13px;
    }

    .article-content {
        padding: 20px;
        overflow-x: auto;
    }

    .article-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .article-content table td,
    .article-content table th {
        white-space: normal;
        padding: 8px 10px;
        font-size: 14px;
    }

    .article-tags {
        padding: 15px 20px;
    }

    .article-tags a {
        padding: 4px 12px;
        font-size: 12px;
    }

    .article-nav {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-nav-item {
        padding: 15px;
    }

    .article-nav-icon {
        font-size: 14px;
        min-width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .article-nav-info {
        flex: 1;
        min-width: 0;
    }

    .article-nav-info strong {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .news-item {
        padding: 20px;
    }

    .info-card-image {
        height: 100px;
    }

    .featured-article-thumb {
        width: 80px;
        height: 60px;
    }

    .featured-article-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info-card-body h3 {
        font-size: 13px;
        min-height: 36px;
    }

    .info-card-body p {
        display: none;
    }

    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .info-carousel-slide {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-carousel-section {
        padding: 15px;
    }

    .section-header .section-title {
        font-size: 16px;
    }
}