/* ========================================
   宝金/满冠风格模板 - 暗夜金
   主色: #FF6B00  辅色: #1F0F00
   资源下载引流型体育/娱乐模板
   ======================================== */

:root {
    --primary: #FF6B00;
    --primary-dark: #CC5500;
    --secondary: #1F0F00;
    --dark: #100500;
    --light: #F8F9FA;
    --gray: #6B7280;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #FF6B00 0%, #CC5500 100%);
    --gradient-dark: linear-gradient(135deg, #1F0F00 0%, #100500 100%);
    --gradient-hero: linear-gradient(135deg, #100500 0%, #1F0F00 50%, #1F0F00 100%);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(255, 107, 0, 0.25);
    --border-radius: 14px;
}

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

body {
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--light);
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--dark); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

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

/* ========================================
   顶部导航
   ======================================== */
.mipmb-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-text a {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 800; color: var(--white);
}
.logo-icon {
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-weight: 900; font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    text-shadow: none;
}

.mipmb-menu { display: flex; list-style: none; gap: 5px; margin: 0; padding: 0; }
.mipmb-menu li { position: relative; }
.mipmb-menu li a {
    display: block; padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85); font-size: 15px; font-weight: 500;
    border-radius: 8px; transition: all 0.3s ease;
}
.mipmb-menu li a:hover,
.mipmb-menu li.active a {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
}

.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-login, .btn-register {
    padding: 8px 18px; border-radius: 8px;
    font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease;
}
.btn-login { border: 1px solid rgba(255, 255, 255, 0.2); background: transparent; color: var(--white); }
.btn-login:hover { border-color: var(--primary); color: var(--primary); }
.btn-register {
    background: var(--gradient);
    color: var(--dark); border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6); }

.mipmb-dropdown-list {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--secondary); border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-width: 160px; padding: 8px 0; z-index: 100;
    border: 1px solid rgba(255, 107, 0, 0.2);
}
.mipmb-dropdown-item:hover .mipmb-dropdown-list { display: block; }
.mipmb-dropdown-list li a { padding: 8px 16px; border-radius: 0; }
.mipmb-dropdown-list li a:hover { background: rgba(255, 107, 0, 0.1); color: var(--primary); }

/* ========================================
   Hero 区域 - 暗色渐变
   ======================================== */
.hero-section {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20%; left: 10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 4s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%; right: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 5s ease-in-out infinite reverse;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.4);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--gradient);
    color: var(--dark);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.6);
    color: var(--dark);
}

.hero-btn.outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.hero-btn.outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* 数据统计 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   内容区
   ======================================== */
.mipcms-main { margin-top: 0; min-height: 100vh; }

.content-section { padding: 70px 0; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    display: block;
    width: 5px;
    height: 30px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 14px;
    margin-top: 8px;
    margin-left: 17px;
}

.section-more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.section-more:hover {
    background: var(--gradient);
    color: var(--dark);
    border-color: transparent;
}

/* ========================================
   核心卖点 Features Grid
   ======================================== */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--light);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ========================================
   焦点资源 - 精选卡片
   ======================================== */
.featured-section {
    background: var(--light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.featured-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.featured-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gradient);
}

.featured-image mip-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-image mip-img { transform: scale(1.08); }

.featured-tag {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gradient);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.featured-content {
    padding: 20px 25px;
}

.featured-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--dark);
}

.featured-title a { color: var(--dark); }
.featured-title a:hover { color: var(--primary); }

.featured-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
}

.featured-meta .date { color: var(--primary); font-weight: 500; }
.featured-meta .views { color: var(--gray); }

/* ========================================
   热门资源 - 排行榜
   ======================================== */
.ranking-section {
    background: var(--white);
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ranking-list {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ranking-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px dashed #E5E7EB;
    transition: all 0.3s ease;
}

.ranking-item:last-child { border-bottom: none; }

.ranking-item:hover {
    transform: translateX(5px);
}

.ranking-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--light);
    color: var(--gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    border: 2px solid #E5E7EB;
}

.ranking-item:nth-child(1) .ranking-num {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border-color: #FFD700;
}

.ranking-item:nth-child(2) .ranking-num {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: white;
    border-color: #C0C0C0;
}

.ranking-item:nth-child(3) .ranking-num {
    background: linear-gradient(135deg, #CD7F32, #B8722D);
    color: white;
    border-color: #CD7F32;
}

.ranking-content {
    flex: 1;
    min-width: 0;
}

.ranking-link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}

.ranking-link:hover { color: var(--primary); }

.ranking-info {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--gray);
}

.ranking-info .views {
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   下载使用提示 - 表格
   ======================================== */
.tips-section {
    background: var(--light);
}

.tips-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border-collapse: collapse;
}

.tips-table thead {
    background: var(--gradient);
    color: var(--dark);
}

.tips-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
}

.tips-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #F0F0F0;
    color: var(--dark);
    font-size: 14px;
}

.tips-table tbody tr {
    transition: all 0.3s ease;
}

.tips-table tbody tr:hover {
    background: var(--light);
}

.tips-table tbody tr:last-child td { border-bottom: none; }

.tips-table .item-name {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tips-table .item-name::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
    font-size: 16px;
}

.tips-table .item-recommend {
    color: var(--primary);
    font-weight: 600;
}

.tips-table .item-note {
    color: var(--gray);
    font-size: 13px;
}

/* ========================================
   平台功能一览
   ======================================== */
.functions-section {
    background: var(--white);
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.function-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.function-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: var(--shadow-hover);
}

.function-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
}

.function-info { flex: 1; }

.function-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.function-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ========================================
   最新动态
   ======================================== */
.news-section {
    background: var(--light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.news-thumb {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    background: var(--gradient);
    overflow: hidden;
    position: relative;
}

.news-thumb mip-img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.news-content { flex: 1; min-width: 0; }

.news-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dark);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-title a { color: var(--dark); }
.news-title a:hover { color: var(--primary); }

.news-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--gray);
}

.news-meta .date { color: var(--primary); font-weight: 600; }

/* ========================================
   用户评价 - Testimonial
   ======================================== */
.testimonial-section {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
}

.testimonial-section .section-title {
    color: var(--white);
}

.testimonial-section .section-title::before {
    background: var(--gradient);
}

.testimonial-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--primary);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
    opacity: 0.6;
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    min-height: 100px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 800;
    font-size: 16px;
}

.testimonial-info { flex: 1; }

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

/* ========================================
   常见问题 FAQ
   ======================================== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question::before {
    content: 'Q';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    margin-right: 12px;
}

.faq-question-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--gradient);
    color: var(--dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray);
    line-height: 1.7;
    font-size: 14px;
    padding: 0 25px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 65px;
}

/* ========================================
   底部 CTA
   ======================================== */
.cta-section {
    background: var(--gradient);
    color: var(--dark);
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100%; right: -10%;
    width: 400px; height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100%; left: -10%;
    width: 400px; height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark);
}

.cta-desc {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--dark);
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--primary);
    border: 2px solid var(--dark);
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 15px;
}

.cta-btn:hover {
    background: transparent;
    color: var(--dark);
    transform: translateY(-2px);
}

.cta-btn.outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.cta-btn.outline:hover {
    background: var(--dark);
    color: var(--primary);
}

/* ========================================
   文章列表/详情
   ======================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
}

.main-content { min-width: 0; }

.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.article-card .card-image {
    width: 260px;
    min-height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.article-card .card-image mip-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .card-image mip-img { transform: scale(1.08); }

.article-card .card-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.article-card .card-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.article-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-card .card-title a { color: var(--dark); }
.article-card .card-title a:hover { color: var(--primary); }

.article-card .card-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
}

.article-card .card-meta .date { color: var(--primary); font-weight: 600; }

/* ========================================
   侧边栏
   ======================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

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

.widget-list li a {
    display: flex;
    gap: 12px;
    color: var(--dark);
    font-size: 14px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.widget-list li a:hover { color: var(--primary); }

.widget-list .list-num {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--light);
    color: var(--gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.widget-list li:nth-child(1) .list-num,
.widget-list li:nth-child(2) .list-num,
.widget-list li:nth-child(3) .list-num {
    background: var(--gradient);
    color: var(--dark);
}

.widget-list .list-info p {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light);
    color: var(--gray);
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--gradient);
    color: var(--dark);
}

/* ========================================
   文章详情
   ======================================== */
.article-detail {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-detail .detail-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
}

.article-detail .detail-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light);
    font-size: 14px;
    color: var(--gray);
}

.article-detail .detail-meta .source {
    color: var(--primary);
    font-weight: 600;
}

.article-detail .detail-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--dark);
}

.article-detail .detail-content p { margin-bottom: 20px; }
.article-detail .detail-content h2,
.article-detail .detail-content h3 {
    margin: 30px 0 15px;
    color: var(--dark);
    font-weight: 700;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}

.article-detail .detail-content img {
    border-radius: 8px;
    margin: 20px 0;
    width: 100%;
}

.article-detail .detail-content a { color: var(--primary); }

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light);
}

.article-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
    background: var(--light);
    border-radius: 8px;
    max-width: 48%;
    transition: all 0.3s ease;
}

.article-nav a:hover {
    background: var(--gradient);
    color: var(--dark);
}

.article-nav a span { font-size: 12px; color: var(--gray); }
.article-nav a:hover span { color: rgba(0, 0, 0, 0.7); }
.article-nav .nav-title {
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    color: var(--dark);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.pagination a:hover {
    background: var(--gradient);
    color: var(--dark);
    border-color: transparent;
}

.pagination .active {
    background: var(--gradient);
    color: var(--dark);
    border-color: transparent;
}

/* 面包屑 */
.breadcrumb {
    display: flex;
    gap: 8px;
    padding: 15px 0;
    font-size: 14px;
    color: var(--gray);
    align-items: center;
}

.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: #D1D5DB; }

/* ========================================
   页脚
   ======================================== */
.mipui-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.mipui-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.8); }
.footer-bottom a:hover { color: var(--primary); }

.friend-link { margin-bottom: 20px; }
.friend-link ul {
    display: flex; flex-wrap: wrap; gap: 10px;
    list-style: none; padding: 0;
}
.friend-link li {
    padding: 5px 12px;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 5px;
}
.friend-link a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
.friend-link a:hover { color: var(--primary); }

/* ========================================
   响应式
   ======================================== */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .ranking-grid { grid-template-columns: 1fr; }
    .functions-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mipmb-menu { display: none; }
    .header-actions { gap: 6px; }
    .btn-login, .btn-register { padding: 6px 12px; font-size: 12px; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 15px; }
    .section-title { font-size: 24px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .functions-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .article-card { flex-direction: column; }
    .article-card .card-image { width: 100%; height: 180px; }
    .article-detail { padding: 20px; }
    .article-detail .detail-title { font-size: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-value { font-size: 32px; }
    .tips-table { font-size: 12px; }
    .tips-table th, .tips-table td { padding: 12px 10px; }
    .cta-title { font-size: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-btn { width: 100%; justify-content: center; }
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
