/* 黑料社51 - 新闻资讯风格 */
:root {
    --news-red: #e63946;
    --news-red-dark: #c1121f;
    --news-red-light: #ff6b7a;
    --news-dark: #1a1a1a;
    --news-gray: #2d2d2d;
    --news-light: #f5f5f5;
    --news-white: #ffffff;
    --news-text: #333333;
    --news-text-light: #666666;
    --news-gold: #f4a261;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', 'PingFang SC', sans-serif;
    background: var(--news-light);
    color: var(--news-text);
    line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

.news-header {
    background: var(--news-dark);
    padding: 15px 0;
    border-bottom: 4px solid var(--news-red);
}

.news-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-logo-icon {
    background: var(--news-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.news-logo-text .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

.news-logo-text .tagline {
    font-size: 0.78rem;
    color: var(--news-red-light);
    letter-spacing: 2px;
}

.news-nav {
    background: var(--news-red);
}

.news-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.news-nav a {
    display: block;
    padding: 14px 32px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.news-nav a:hover,
.news-nav a.active {
    background: var(--news-red-dark);
}

.news-hero {
    background: linear-gradient(135deg, var(--news-dark) 0%, var(--news-gray) 100%);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.news-hero::after {
    content: '🔥';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 12rem;
    opacity: 0.1;
}

.news-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.news-hero-badge {
    display: inline-block;
    background: var(--news-red);
    color: white;
    padding: 8px 22px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.news-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.news-hero-title span { color: var(--news-red-light); }

.news-hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.news-hero-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.news-btn {
    display: inline-block;
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 30px;
}

.news-btn-primary {
    background: var(--news-red);
    color: white;
}

.news-btn-primary:hover {
    background: var(--news-red-dark);
    transform: translateY(-2px);
}

.news-btn-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.news-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

.news-stats {
    background: white;
    padding: 35px 0;
    border-top: 3px solid var(--news-red);
    border-bottom: 3px solid var(--news-red);
}

.news-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.news-stat { text-align: center; }

.news-stat-num {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--news-red);
}

.news-stat-label {
    color: var(--news-text-light);
    margin-top: 5px;
}

.news-section { padding: 65px 0; }
.news-section-alt { background: white; }

.news-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.news-section-title span { color: var(--news-red); }

.news-section-sub {
    text-align: center;
    color: var(--news-text-light);
    letter-spacing: 2px;
    margin-bottom: 45px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.news-card-head {
    background: linear-gradient(135deg, var(--news-red) 0%, var(--news-red-dark) 100%);
    color: white;
    padding: 20px;
}

.news-card-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.news-card-head h3 {
    font-size: 1.3rem;
}

.news-card-body {
    padding: 22px;
}

.news-card-body p {
    color: var(--news-text-light);
    line-height: 1.8;
}

.news-card-meta {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #EEE;
    font-size: 0.85rem;
    color: var(--news-text-light);
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-list-item {
    background: white;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--news-red);
    transition: all 0.3s;
}

.news-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.news-list-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.news-list-tag {
    background: var(--news-red);
    color: white;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.news-list-date {
    color: var(--news-text-light);
    font-size: 0.88rem;
}

.news-list-item h3 {
    color: var(--news-dark);
    margin-bottom: 10px;
}

.news-list-item p {
    color: var(--news-text-light);
    line-height: 1.8;
}

.news-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.news-contact-panel {
    background: white;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.news-contact-panel h3 {
    color: var(--news-red);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.news-contact-list { list-style: none; }
.news-contact-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #EEE;
    align-items: center;
}

.news-contact-list li:last-child { border-bottom: none; }

.news-contact-icon { font-size: 1.5rem; width: 40px; text-align: center; }
.news-contact-label { color: var(--news-text-light); font-size: 0.88rem; }
.news-contact-value { font-weight: 600; color: var(--news-dark); }

.news-form { margin-top: 15px; }
.news-form-group { margin-bottom: 20px; }

.news-form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
}

.news-form-group input,
.news-form-group textarea,
.news-form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #DDD;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.news-form-group input:focus,
.news-form-group textarea:focus {
    outline: none;
    border-color: var(--news-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.news-form-group textarea { resize: vertical; min-height: 120px; }

.news-submit {
    width: 100%;
    padding: 14px;
    background: var(--news-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.news-submit:hover { background: var(--news-red-dark); }

.news-footer {
    background: var(--news-dark);
    color: white;
    padding: 55px 0 25px;
    margin-top: 50px;
}

.news-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.news-footer-col h4 {
    color: var(--news-red-light);
    margin-bottom: 18px;
}

.news-footer-col ul { list-style: none; }
.news-footer-col li { margin-bottom: 10px; }

.news-footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.news-footer-col a:hover { color: var(--news-red-light); }

.news-footer-about p { color: rgba(255,255,255,0.7); line-height: 1.8; }

.news-footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .news-nav ul { flex-direction: column; }
    .news-nav a { text-align: center; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .news-hero-title { font-size: 2.4rem; }
    .news-contact { grid-template-columns: 1fr; }
}