/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部信息栏 */
.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* 头部区域 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* 导航菜单 */
.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* 移动端菜单按钮 */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* 移动端导航 */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

/* 遮罩层 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 英雄区域 */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    color: #fff;
    z-index: 2;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #e0e0e0;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.overlay-content {
    color: #fff;
}

.overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* 服务特点 */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
}

/* 服务优势 */
.advantages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

.advantage-icon {
    font-size: 24px;
    color: #007bff;
    flex-shrink: 0;
}

.advantage-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.advantage-content p {
    color: #666;
    margin-bottom: 20px;
}

.advantage-features {
    list-style: none;
}

.advantage-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.advantage-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
}

/* 服务流程 */
.process {
    padding: 80px 0;
    background-color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #007bff;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #1a1a1a;
    position: relative;
}

.process-step p {
    color: #666;
}

/* 页脚 */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-info p {
    color: #999;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-text h2 {
        font-size: 36px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* 打印样式 */
@media print {
    .header,
    .mobile-menu,
    .mobile-nav,
    .overlay,
    .footer {
        display: none;
    }
    
    body {
        background-color: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* 成功案例样式 */
.cases {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-header {
    padding: 25px 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.case-icon {
    font-size: 32px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-badge {
    background: #e3f2fd;
    color: #007bff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.case-content {
    padding: 20px 25px;
    flex-grow: 1;
}

.case-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #6c757d;
}

.case-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
}

.case-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases {
        padding: 60px 0;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-header {
        padding: 20px 20px 15px;
    }
    
    .case-content {
        padding: 15px 20px;
    }
    
    .case-footer {
        padding: 12px 20px;
    }
}

/* 导航当前栏目样式 */
.nav-link.z055a6this,
.mobile-nav-link.z055a6this {
    color: #007bff;
}

.nav-link.z055a6this::after {
    width: 100%;
}

.logo h1 a {
    text-decoration: none;
    color: inherit;
}

body.no-scroll {
    overflow: hidden;
}

/* 面包屑 */
.breadcrumb-bar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb-current {
    color: #333;
}

/* 页面布局 */
.page-main {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.main-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

/* 侧栏 */
.sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-block {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
}

.sidebar-block-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.sidebar-block-header h3 a {
    color: #fff;
    text-decoration: none;
}

.sidebar-more {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
}

.sidebar-more:hover {
    color: #fff;
}

.sidebar-article-list {
    list-style: none;
    padding: 10px 15px;
    max-height: 600px;
    overflow-y: auto;
}

.sidebar-article-item {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-article-item:last-child {
    border-bottom: none;
}

.sidebar-article-link {
    display: flex;
    gap: 12px;
    padding: 10px 5px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.sidebar-article-link:hover {
    background-color: #f8f9fa;
}

.sidebar-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #eee;
}

.sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-article-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article-date {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* 内容页 */
.article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.article-meta a {
    color: #007bff;
    text-decoration: none;
}

.article-meta small {
    color: #999;
}

.article-thumb {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.article-body p {
    margin-bottom: 15px;
}

.article-figure {
    margin: 15px 0;
    text-align: center;
}

.article-figure img {
    max-width: 100%;
    border-radius: 8px;
}

.article-figure figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.z055a6meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.z055a6tagitem a {
    display: inline-block;
    padding: 5px 14px;
    background-color: #e3f2fd;
    color: #007bff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.2s ease;
}

.z055a6tagitem a:hover {
    background-color: #007bff;
    color: #fff;
}

.clear {
    clear: both;
}

.article-prenext {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.prenext-item {
    flex: 1;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.prenext-item a {
    color: #333;
    text-decoration: none;
}

.prenext-item a:hover {
    color: #007bff;
}

.prenext-next {
    text-align: right;
}

.related-articles {
    margin-top: 10px;
}

.related-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    padding-left: 12px;
    border-left: 4px solid #007bff;
}

.related-list {
    list-style: none;
}

.related-item {
    border-bottom: 1px solid #f0f0f0;
}

.related-item:last-child {
    border-bottom: none;
}

.related-link {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    text-decoration: none;
    color: inherit;
}

.related-link:hover h4 {
    color: #007bff;
}

.related-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.related-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.z055a6diyfield {
    margin-bottom: 20px;
}

/* 列表页 */
.list-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.list-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.list-desc {
    color: #666;
    font-size: 15px;
}

.list-articles {
    list-style: none;
}

.list-article-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.list-article-item:last-child {
    border-bottom: none;
}

.list-article-thumb {
    flex-shrink: 0;
    width: 240px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
}

.list-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.list-article-item:hover .list-article-thumb img {
    transform: scale(1.05);
}

.list-article-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.list-cate a {
    color: #007bff;
    text-decoration: none;
}

.list-article-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.list-article-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.list-article-title a:hover {
    color: #007bff;
}

.list-article-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 分页 - 左右显示 */
.pagebar {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.z055a6pages {
    width: 100%;
}

.z055a6pages ul,
.z055a6pages .pagelist {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.z055a6pages ul li,
.z055a6pages .pagelist li {
    display: inline-block;
}

.z055a6pages a,
.z055a6pages span,
.z055a6pages .pagelist a,
.z055a6pages .pagelist span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.z055a6pages a:hover,
.z055a6pages .pagelist a:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.z055a6pages .thisclass span,
.z055a6pages .thisclass a,
.z055a6pages .pagelist .thisclass span,
.z055a6pages .pagelist .thisclass a {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

/* 首页文章板块 */
.home-articles {
    padding: 80px 0;
    background-color: #fff;
}

.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.home-article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.home-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-article-thumb {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background-color: #eee;
}

.home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.home-article-card:hover .home-article-thumb img {
    transform: scale(1.08);
}

.home-article-info {
    padding: 15px;
}

.home-article-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-article-date {
    font-size: 12px;
    color: #999;
}

/* 内页响应式 */
@media (max-width: 1200px) {
    .page-layout {
        grid-template-columns: 1fr 280px;
    }

    .home-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .home-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .list-article-thumb {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px;
    }

    .article-title {
        font-size: 22px;
    }

    .article-prenext {
        flex-direction: column;
    }

    .prenext-next {
        text-align: left;
    }

    .list-article-item {
        flex-direction: column;
    }

    .list-article-thumb {
        width: 100%;
        height: 180px;
    }

    .related-link {
        flex-direction: column;
    }

    .related-thumb {
        width: 100%;
        height: 160px;
    }

    .home-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .home-articles {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-main {
        padding: 20px 0 60px;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }

    .home-articles-grid {
        grid-template-columns: 1fr;
    }

    .z055a6pages ul,
    .z055a6pages .pagelist {
        justify-content: center;
    }
} 