.article-list{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.article-list .article-item{display:flex;flex-direction:column;background:#fff;border-radius:10px;box-shadow:0 2px 8px rgba(0,0,0,0.06);transition:all 0.25s ease;border:1px solid #f0f0f0;overflow:hidden;}
.article-list .article-item:hover{box-shadow:0 6px 20px rgba(0,0,0,0.1);transform:translateY(-2px);border-color:#f39c12;}
.article-list .article-item-cover{display:block;position:relative;width:100%;aspect-ratio:16 / 9;overflow:hidden;background:#f5f5f5;}
.article-list .article-item-cover img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease;}
.article-list .article-item:hover .article-item-cover img{transform:scale(1.05);}
.article-list .article-item-cover-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#f5f5f5 0%,#e8e8e8 100%);color:#ccc;}
.article-list .article-item-content{flex:1;min-width:0;display:flex;flex-direction:column;padding:8px;}
.article-list .article-item-header{display:flex;align-items:center;gap:10px;margin-bottom:10px;}
.article-list .article-item-date{flex-shrink:0;display:inline-flex;align-items:center;gap:2px;font-size:12px;color:#f39c12;font-weight:bold;background:#fff8e1;padding:1px 6px 0 6px;border-radius:4px;}
.article-list .article-item-date svg{width:12px;height:11px;display:black;padding-bottom:1px;}
.article-list .article-item-date-float{display:none;}
.article-list .article-item-title{flex:1;min-width:0;font-size:16px;font-weight:700;color:#1a1a1a;line-height:1.4;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;transition:color 0.2s;padding:0;margin:0;}
.article-list .article-item:hover .article-item-title{color:#f39c12;}
.article-list .article-item-summary{font-size:14px;color:#666;line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.article-list .article-item-link{text-decoration:none;color:inherit;display:block;}
.article-list-pagination{display:flex;justify-content:center;align-items:center;gap:6px;margin-top:30px;flex-wrap:wrap;}
.article-list-pagination a,.article-list-pagination span:not(.total-info){display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 12px;font-size:14px;font-weight:500;border-radius:8px;text-decoration:none;transition:all 0.2s ease;}
.article-list-pagination a{background:#fff;color:#333;border:1px solid #e0e0e0;}
.article-list-pagination a:hover{background:#f39c12;color:#fff;border-color:#f39c12;}
.article-list-pagination .current{background:linear-gradient(135deg,#f39c12 0%,#e67e22 100%);color:#fff;border:none;font-weight:700;}
.article-list-pagination .disabled{background:#f5f5f5;color:#bbb;border:1px solid #e8e8e8;cursor:not-allowed;}
.article-list-pagination .ellipsis{background:transparent;border:none;color:#999;min-width:auto;padding:0 4px;}
.article-list-pagination .total-info{margin-left:12px;font-size:13px;color:#888;height:40px;display:inline-flex;align-items:center;}
.article-list-empty{text-align:center;padding:60px 20px;color:#999;}
.article-list-empty svg{width:64px;height:64px;color:#ddd;margin-bottom:16px;}
.article-list-empty p{font-size:15px;}
@media (max-width:960px){.article-list{grid-template-columns:repeat(2,1fr);}}
@media (max-width:768px){.article-list{grid-template-columns:1fr;gap:16px;}.article-list .article-item-date{display:none;}.article-list .article-item-date-float{display:inline-flex;position:absolute;top:10px;right:10px;align-items:center;gap:4px;font-size:12px;color:#fff;font-weight:600;background:rgba(243,156,18,0.9);padding:4px 8px;border-radius:4px;z-index:1;}.article-list .article-item-date-float svg{width:12px;height:12px;}.article-list .article-item-title{-webkit-line-clamp:2;font-size:16px;}.article-list .article-item-summary{-webkit-line-clamp:3;}.article-list-pagination a,.article-list-pagination span:not(.total-info){min-width:36px;height:36px;font-size:13px;padding:0 8px;}.article-list-pagination .total-info{width:100%;justify-content:center;margin-left:0;margin-top:8px;height:auto;}}
@media (max-width:480px){.article-list .article-item-content{padding:12px;}.article-list .article-item-title{font-size:15px;}.article-list-pagination{gap:4px;}.article-list-pagination a,.article-list-pagination span:not(.total-info){min-width:32px;height:32px;font-size:12px;padding:0 6px;border-radius:6px;}}
.recommend-section{padding:0;}
.recommend-section .recommend-title{font-size:22px;font-weight:700;color:#1a1a1a;text-align:center;margin-top:8px;margin-bottom:20px;position:relative;padding-bottom:10px;}
.recommend-section .recommend-title::after{content:'';position:absolute;left:50%;bottom:0;transform:translateX(-50%);width:80px;height:3px;background:linear-gradient(90deg,#f39c12 0%,#e67e22 100%);border-radius:2px;}
.recommend-section .recommend-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.recommend-section .recommend-card{display:block;position:relative;border-radius:10px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.08);transition:all 0.3s ease;text-decoration:none;}
.recommend-section .recommend-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.15);}
.recommend-section .recommend-card-cover{position:relative;width:100%;aspect-ratio:16 / 9;overflow:hidden;background:#f0f0f0;}
.recommend-section .recommend-card-cover img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease;}
.recommend-section .recommend-card:hover .recommend-card-cover img{transform:scale(1.08);}
.recommend-section .recommend-card-cover-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#e8e8e8 0%,#d0d0d0 100%);color:#bbb;}
.recommend-section .recommend-card-overlay{position:absolute;left:0;right:0;bottom:0;padding:36px 10px 8px;background:linear-gradient(to top,rgba(0,0,0,0.85) 0%,rgba(0,0,0,0) 100%);}
.recommend-section .recommend-card-title{font-size:13px;font-weight:600;color:#fff;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
@media (max-width:960px){.recommend-section .recommend-grid{grid-template-columns:repeat(3,1fr);}.recommend-section .recommend-card-overlay{padding:40px 10px 10px;}.recommend-section .recommend-card-title{font-size:14px;}}
@media (max-width:768px){.recommend-section{padding:24px 0 32px;}.recommend-section .recommend-title{font-size:20px;margin-bottom:20px;}.recommend-section .recommend-grid{grid-template-columns:repeat(2,1fr);gap:12px;}.recommend-section .recommend-card-overlay{padding:44px 10px 10px;}.recommend-section .recommend-card-title{font-size:15px;}}
@media (max-width:480px){.recommend-section .recommend-grid{gap:10px;}.recommend-section .recommend-card{border-radius:8px;}.recommend-section .recommend-card-overlay{padding:40px 8px 8px;}.recommend-section .recommend-card-title{font-size:14px;}}
