<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 瀹瑰櫒 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 鍒嗙被椤甸潰澶撮儴 - 娣诲姞椤堕儴绌洪棿 */
.category-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    /* 娣诲姞椤堕儴杈硅窛锛岃€冭檻瀵艰埅鏍忛珮搴� */
    margin-top: 80px; /* 鍙互鏍规嵁浣犵殑瀵艰埅鏍忓疄闄呴珮搴﹁皟鏁磋繖涓€� */
}
.category-title {
    font-size: 2.5em;
    color: #333;
    margin: 0 0 20px;
}

.category-description {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.category-main {
    padding: 40px 0;
}

/* 鏂囩珷缃戞牸甯冨眬 */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* 鏂囩珷鍗＄墖鏍峰紡 */
.post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

/* 鏂囩珷鍥剧墖瀹瑰櫒 */
.post-card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 姣斾緥 */
    overflow: hidden;
}

.post-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

/* 鏂囩珷鍐呭鍖哄煙 */
.post-card-content {
    padding: 20px;
}

/* 鍒嗙被鏍囩 */
.post-categories {
    margin-bottom: 10px;
}

.post-categories a {
    display: inline-block;
    padding: 4px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #f0f0f0;
    color: #666;
    border-radius: 15px;
    font-size: 0.8em;
    text-decoration: none;
    transition: background 0.3s ease;
}

.post-categories a:hover {
    background: #e0e0e0;
    color: #333;
}

/* 鏂囩珷鏍囬 */
.post-title {
    font-size: 1.4em;
    margin: 10px 0;
    line-height: 1.3;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #0066cc;
}

/* 鏂囩珷鎽樿 */
.post-excerpt {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 鏂囩珷鍏冧俊鎭� */
.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85em;
    color: #888;
}

.post-meta span {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 5px;
}

.post-meta i {
    margin-right: 5px;
}

/* 鍒嗛〉瀵艰埅 */
.pagination {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.pagination .page-numbers:hover:not(.current) {
    background: #f5f5f5;
}

/* 鏃犳枃绔犳彁绀� */
.no-posts {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.no-posts p {
    color: #666;
    font-size: 1.2em;
    margin: 0;
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .category-header {
        padding: 40px 0;
        margin-top: 60px; /* 绉诲姩绔彲鑳介渶瑕佽皟鏁寸殑鍊� */
    }
    
    .category-title {
        font-size: 2em;
    }
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .post-title {
        font-size: 1.2em;
    }
}


/* 浼樺寲涓瓑灞忓箷灏哄鐨勬樉绀� */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .category-header {
        padding: 40px 0;
        margin-top: 60px;
    }
    
    .category-title {
        font-size: 2em;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .post-title {
        font-size: 1.2em;
    }
    
    /* 璋冩暣鏂囩珷鍏冧俊鎭湪涓瓑灞忓箷鐨勬樉绀� */
    .post-meta {
        gap: 8px 15px;
    }
}



@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    /* 淇敼鏂囩珷鍏冧俊鎭牱寮忥紝淇濇寔姘村钩鎺掑垪 */
    .post-meta {
        display: flex;
        flex-direction: row; /* 鏀瑰洖姘村钩鎺掑垪 */
        flex-wrap: wrap; /* 鍏佽鎹㈣ */
        align-items: center;
        gap: 8px 12px; /* 璁剧疆琛岄棿璺濆拰椤圭洰闂磋窛 */
    }
    
    .post-meta span {
        display: inline-flex;
        align-items: center;
        margin: 0; /* 绉婚櫎鍘熸湁鐨勫杈硅窛 */
        font-size: 12px; /* 绋嶅井鍑忓皬瀛椾綋澶у皬 */
        white-space: nowrap; /* 闃叉鏂囨湰鎹㈣ */
    }
    
    .post-meta i {
        margin-right: 4px; /* 绋嶅井鍑忓皬鍥炬爣鍜屾枃瀛楃殑闂磋窛 */
        font-size: 12px; /* 鍥炬爣涔熺浉搴斿噺灏� */
    }
    
    .category-title {
        font-size: 1.8em;
    }
    
    .category-header {
        margin-top: 50px;
        padding: 30px 0;
    }
}</pre></body></html>