body {
    margin: 0;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
}
.site-header {
    background: linear-gradient(to right, #2c3e50, #4a6491);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.logo-area .logo-link {
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}
.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.main-nav a:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    transform: translateY(-2px);
}
.header-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}
.hero-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 3rem;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 3rem;
}
.content-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 1rem;
}
.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
}
.title-icon {
    display: inline-block;
    width: 10px;
    height: 25px;
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    margin-right: 10px;
    border-radius: 5px;
}
.section-decoration {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #eaeaea, transparent);
    margin-left: 1rem;
}
.article-showcase {
    padding: 1rem 0;
}
.article-list-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-list-vertical li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s ease;
}
.article-list-vertical li:hover {
    padding-left: 10px;
    background: #f9f9f9;
}
.article-list-vertical a {
    text-decoration: none;
    color: #34495e;
    font-size: 1.1rem;
    display: block;
    transition: color 0.3s;
}
.article-list-vertical a:hover {
    color: #e74c3c;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.grid-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: transform 0.4s ease;
}
.grid-item:hover {
    transform: translateY(-10px);
}
.item-header {
    height: 80px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.item-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.item-header h4 {
    color: white;
    font-size: 1.5rem;
    z-index: 1;
    margin: 0;
}
.item-body {
    padding: 1.5rem;
}
.article-list-compact, .ticker-list, .article-list-featured {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-list-compact li, .ticker-list li, .article-list-featured li {
    padding: 0.6rem 0;
    border-bottom: 1px dotted #eee;
}
.article-list-compact a, .ticker-list a, .article-list-featured a {
    text-decoration: none;
    color: #555;
    font-size: 1rem;
    display: block;
    transition: all 0.3s;
}
.article-list-compact a:hover, .ticker-list a:hover, .article-list-featured a:hover {
    color: #3498db;
    padding-left: 5px;
}
.news-ticker {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.ticker-list {
    animation: ticker 20s linear infinite;
}
@keyframes ticker {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
}
.card-overlay h5 {
    margin: 0;
    font-size: 1.3rem;
}
.site-footer {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 3rem 0 0;
    margin-top: 3rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.footer-section {
    padding: 1rem;
}
.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #f1c40f;
}
.footer-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f1c40f;
    border-left: 4px solid #f1c40f;
    padding-left: 10px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.7rem;
}
.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #f1c40f;
    padding-left: 5px;
}
.footer-info, .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0.5rem 0;
}
.footer-bottom {
    margin-top: 2rem;
    position: relative;
    height: 60px;
}
.footer-decoration {
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}
.list-page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}
.list-page-header {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.breadcrumb {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}
.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}
.category-link {
    color: #e74c3c;
    font-weight: bold;
}
.page-title-area {
    margin-bottom: 1rem;
}
.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0 0 0.5rem;
}
.title-ornament {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    border-radius: 2px;
}
.page-description p {
    color: #7f8c8d;
    font-size: 1.1rem;
}
.list-content-wrapper {
    display: flex;
    gap: 2rem;
}
.list-sidebar {
    flex: 0 0 250px;
}
.sidebar-block {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.sidebar-block h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1c40f;
}
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-nav li {
    margin-bottom: 0.8rem;
}
.sidebar-nav a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s;
}
.sidebar-nav a:hover {
    background: #f8f9fa;
    color: #e74c3c;
    padding-left: 15px;
}
.sidebar-article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-article-list li {
    padding: 0.7rem 0;
    border-bottom: 1px dotted #eee;
}
.sidebar-article-list a {
    text-decoration: none;
    color: #34495e;
    font-size: 0.95rem;
    display: block;
    transition: color 0.3s;
}
.sidebar-article-list a:hover {
    color: #3498db;
}
.list-main-content {
    flex: 1;
}
.list-controls {
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.sort-options a {
    color: #7f8c8d;
    text-decoration: none;
    margin-left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    transition: all 0.3s;
}
.sort-options a.active, .sort-options a:hover {
    background: #3498db;
    color: white;
}
.article-list-container {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.article-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-list-detailed li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.article-list-detailed li::before {
    content: '›';
    color: #3498db;
    font-size: 1.5rem;
    margin-right: 10px;
}
.article-list-detailed a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.1rem;
    flex: 1;
    transition: color 0.3s;
}
.article-list-detailed a:hover {
    color: #e74c3c;
}
.pagination-container {
    text-align: center;
}
.pagelist {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.pagelist li {
    margin: 0;
}
.pagelist a {
    display: block;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: #555;
    background: white;
    transition: all 0.3s;
}
.pagelist a:hover, .pagelist a.active {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
}
.detail-page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}
.detail-header {
    margin-bottom: 2rem;
}
.detail-breadcrumb {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}
.detail-breadcrumb a {
    color: #3498db;
    text-decoration: none;
}
.detail-hero {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
}
.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    border-radius: 15px;
}
.detail-content-wrapper {
    display: flex;
    gap: 2rem;
}
.main-article {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.article-info {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f1f1;
}
.cat-link {
    display: inline-block;
    background
