/* --------------------------------------------------------
   通用辅助类
   -------------------------------------------------------- */
.text-white {
    color: #fff;
}
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-color: #f4f7fb;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    
    --tag-green-bg: #dcfce7;
    --tag-green-text: #166534;
    --tag-red-bg: #fee2e2;
    --tag-red-text: #991b1b;
    --tag-orange-bg: #ffedd5;
    --tag-orange-text: #9a3412;
    --tag-blue-bg: #dbeafe;
    --tag-blue-text: #1e40af;
    --tag-cyan-bg: #ccfbf1;
    --tag-cyan-text: #115e59;
    --tag-gray-bg: #f1f5f9;
    --tag-gray-text: #334155;

    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* 布局容器 */
.container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮通用样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
}

.btn-orange {
    background-color: #f97316;
    color: #ffffff;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 16px; /* 调大文字 */
    font-weight: 500;
}

.btn-orange:hover {
    background-color: #ea580c;
    color: #ffffff;
}

.btn-block {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
}

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

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.w-100 {
    width: 100%;
}

/* 获取加盟资料包表单样式 */
.subtitle-hint {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 0;
}

.input-group-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-label {
    font-size: 12px; /* 文字改小 */
    color: #94a3b8; /* 改为浅色 */
    margin-bottom: 6px;
    font-weight: bold; /* 改为粗体 */
}

/* 获取加盟资料包表单中的 input 框增加浅色底色 */
.input-group-wrap .input-search {
    background-color: #f8fafc;
}

.form-security-tip {
    font-size: 13px;
    color: #10b981; /* 绿色，表示安全 */
    text-align: center;
    margin-top: 8px;
}

.form-security-tip i {
    margin-right: 4px;
}

/* 想发布项目 */
.publish-card {
    background-color: #0f172a !important; /* 强制覆盖 .card 的背景色，和 header/footer 保持一致 */
    color: #ffffff; /* 文字改为白色 */
}

.publish-card .title {
    color: #ffffff;
}

.btn-publish-square {
    background-color: #f97316; /* 和 btn-search、头部橙色按钮保持一致 */
    color: #ffffff;
    border: none;
    padding: 14px 16px; /* 增加上下 padding 加高按钮 */
    border-radius: 4px; /* 小圆角，和 btn-search 保持一致 */
    font-size: 18px; /* 字体变大 */
    font-weight: 600; /* 改为粗体 */
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-publish-square:hover {
    background-color: #ea580c;
    color: #ffffff;
}

/* 卡片样式 */
.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* 头部导航 */
.header {
    background-color: #0f172a;
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: #f97316;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text {
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 40px; /* 导航文字之间的间距变大，原为 30px */
    margin-left: auto;
    margin-right: 60px; /* 距离右侧按钮更远，原为 30px */
}

.nav-item {
    font-size: 18px; /* 导航文字调大，原为 16px */
    font-weight: 500;
    color: #94a3b8;
    position: relative;
    padding: 23px 0;
}

.nav-item:hover,
.nav-item.active {
    color: #ffffff;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f97316;
    border-radius: 3px 3px 0 0;
}

/* 主体布局 */
.main {
    display: grid;
    grid-template-columns: 1040px 360px;
    gap: 40px;
    margin-top: 24px;
    margin-bottom: 40px;
}

/* 各个区块通用样式 */
.section {
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-color);
}

.section-header .title {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-left: 16px; /* 增加左边距，使文字和装饰条距离变大 */
}

.section-header .title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px; /* 增加高度 */
    background-color: #f97316;
    border-radius: 2px;
}

/* 侧边栏所有标题样式统一直径 */
.sidebar-card .title,
.sidebar-card > .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-left: 0;
}

/* 移除侧边栏标题（包含 section-header 内部）的装饰条 */
.sidebar-card .title::before,
.sidebar-card > .title::before {
    display: none;
}

.link-more {
    font-size: 16px; /* 字体改大，原为 13px */
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

/* 创业宝典文章列表 */
.article-list {
    padding: 12px 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #f8fafc;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.article-item:hover {
    background-color: #f1f5f9;
}

/* --------------------------------------------------------
   文章列表页专属样式 (list-treasured-book.html)
   -------------------------------------------------------- */
.list-card-padding {
    padding: 0 30px;
}

.page-header {
    padding: 40px 0 20px 0;
    text-align: center;
}
.page-title {
    font-size: 32px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
}
.page-subtitle {
    font-size: 16px;
    color: #64748b;
}

.tabs-container {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}
.tabs {
    display: flex;
    gap: 32px;
}
.tab-item {
    font-size: 16px;
    color: #64748b;
    padding: 16px 0;
    position: relative;
    text-decoration: none;
    transition: color 0.2s;
}
.tab-item:hover {
    color: #2563eb;
}
.tab-item.active {
    color: #2563eb;
    font-weight: bold;
}
.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2563eb;
}

.article-detail-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px dashed #e2e8f0;
}
.article-detail-item:last-child {
    border-bottom: none;
}
.article-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #f1f5f9;
    border-radius: 8px;
    flex-shrink: 0;
}
.date-day {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 4px;
}
.date-month {
    font-size: 12px;
    color: #94a3b8;
}
.article-info {
    flex: 1;
}
.article-title-lg {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.article-title-lg a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}
.article-title-lg a:hover {
    color: #f97316;
}
.article-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}
.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tag-gray {
    font-size: 12px;
    color: #64748b;
    background-color: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding-bottom: 20px;
}
.page-btn, .page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.2s;
}
.page-num {
    padding: 0;
    width: 32px;
}
.page-btn:hover, .page-num:hover {
    border-color: #2563eb;
    color: #2563eb;
}
.page-num.active,
.page-num.current {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pagination ul.page-numbers > li > a.page-numbers,
.pagination ul.page-numbers > li > span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.2s;
}
.pagination ul.page-numbers > li > a.page-numbers:not(.prev):not(.next),
.pagination ul.page-numbers > li > span.page-numbers:not(.prev):not(.next):not(.dots) {
    width: 32px;
    padding: 0;
}
.pagination ul.page-numbers > li > a.page-numbers:hover {
    border-color: #2563eb;
    color: #2563eb;
}
.pagination ul.page-numbers > li > span.page-numbers.current {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.pagination ul.page-numbers > li > span.page-numbers.dots {
    border-color: transparent;
    background-color: transparent;
    padding: 0 2px;
}
.pagination .page-numbers {
    list-style: none;
}
.pagination a.page-numbers,
.pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.2s;
}
.pagination a.page-numbers:not(.prev):not(.next),
.pagination span.page-numbers:not(.prev):not(.next):not(.dots) {
    width: 32px;
    padding: 0;
}
.pagination a.page-numbers:hover {
    border-color: #2563eb;
    color: #2563eb;
}
.pagination span.page-numbers.current {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.pagination span.page-numbers.dots {
    border-color: transparent;
    background-color: transparent;
    padding: 0 2px;
}

.sidebar-header {
    margin-bottom: 16px;
}
.sidebar-title-with-line {
    font-size: 16px;
    font-weight: bold;
    color: #1e293b;
    display: flex;
    align-items: center;
}
.sidebar-title-with-line::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background-color: #2563eb;
    margin-right: 10px;
    border-radius: 2px;
}
.sidebar-rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sidebar-rank-list li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #334155;
}
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}
.rank-1 { background-color: #ef4444; }
.rank-2 { background-color: #f97316; }
.rank-3 { background-color: #f59e0b; }
.rank-4, .rank-5 { background-color: #cbd5e1; }

.article-title {
    font-size: 15px;
    color: var(--text-main);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --------------------------------------------------------
   文章详情页专属样式 (article.html)
   -------------------------------------------------------- */
.article-detail-container {
    padding: 40px;
}
.article-main-title {
    font-size: 28px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.4;
}
.article-meta-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.tag-rounded {
    font-size: 13px;
    color: #64748b;
    background-color: #f1f5f9;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}
.article-intro {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}
.project-basic-data-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    padding: 24px 28px;
    margin-bottom: 28px;
}
.project-basic-data-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 700;
}
.project-basic-data-title-icon {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background:
        linear-gradient(to top, #0f172a 0 100%) left 2px bottom / 3px 7px no-repeat,
        linear-gradient(to top, #0f172a 0 100%) center bottom / 3px 10px no-repeat,
        linear-gradient(to top, #0f172a 0 100%) right 2px bottom / 3px 12px no-repeat;
    flex-shrink: 0;
}
.project-basic-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #f1f5f9;
    border-left: 1px solid #f1f5f9;
}
.project-basic-data-item {
    padding: 10px 14px;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.project-basic-data-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}
.project-basic-data-value {
    font-size: 16px;
    line-height: 1.1;
    color: #0f172a;
    font-weight: 700;
}
@media (max-width: 1024px) {
    .project-basic-data-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .project-basic-data-card {
        padding: 16px;
    }
    .project-basic-data-grid {
        grid-template-columns: 1fr;
    }
    .project-basic-data-title {
        font-size: 16px;
    }
    .project-basic-data-title-icon {
        width: 12px;
        height: 12px;
        background:
            linear-gradient(to top, #0f172a 0 100%) left 2px bottom / 2px 6px no-repeat,
            linear-gradient(to top, #0f172a 0 100%) center bottom / 2px 8px no-repeat,
            linear-gradient(to top, #0f172a 0 100%) right 2px bottom / 2px 10px no-repeat;
    }
    .project-basic-data-label {
        font-size: 13px;
    }
    .project-basic-data-value {
        font-size: 14px;
    }
}

/* 富文本区域占位样式 */
.placeholder-img {
    width: 100%;
    height: 360px;
    background-color: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 48px;
    margin-bottom: 32px;
}
.rich-text-content {
    color: #334155;
    line-height: 1.8;
    font-size: 16px;
}
.rich-text-content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #1e293b;
    margin-top: 40px;
    margin-bottom: 16px;
    border-left: 4px solid #2563eb;
    padding-left: 12px;
}
.rich-text-content p {
    margin-bottom: 16px;
}
.rich-text-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}
.rich-text-content li {
    margin-bottom: 8px;
}

/* 招商热线卡片 */
.hotline-card {
    background-color: #0f172a;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.hotline-title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 16px;
}
.hotline-number {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.hotline-desc {
    font-size: 13px;
    color: #38bdf8;
}

/* --------------------------------------------------------
   资讯列表页专属样式 (list-page-news.html)
   -------------------------------------------------------- */
.news-page-container {
    margin-top: 24px;
}
.news-page-title {
    font-size: 28px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 24px;
}
.news-tabs-wrap {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.news-tab-pill {
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    background-color: #fff;
    transition: all 0.2s;
}
.news-tab-pill:hover {
    border-color: #cbd5e1;
    color: #334155;
}
.news-tab-pill.active {
    background-color: #1e293b;
    color: #fff;
    border-color: #1e293b;
}

/* 行业资讯页专属实心背景舌签样式 */
.news-solid-tabs-wrap {
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 8px; /* 增加舌签与底部线条的间距 */
    border-bottom: 1px solid #e2e8f0; /* 将线条改细为 1px */
}
.news-solid-tab {
    padding: 12px 24px;
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    background-color: #ffffff; /* 默认白色背景 */
    transition: all 0.2s;
    border-radius: 8px 8px 0 0; /* 只有上边有圆角，形成舌签效果 */
    margin-right: 4px;
    /* 移除了之前的 margin-bottom 负值，让舌签悬浮在线条上方 */
    border: 1px solid #e2e8f0; /* 给舌签本身加上细边框，使其更立体 */
}
.news-solid-tab:hover {
    color: #1e293b;
    background-color: #f8fafc;
}
.news-solid-tab.active {
    background-color: #1e293b; /* 与 header 一致的深色背景 */
    color: #ffffff; /* 白色文字 */
    border-color: #1e293b;
    font-weight: 500;
}

.news-card-item {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.news-card-tag {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}
.news-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 12px;
}
.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.news-card-title a:hover {
    color: #f97316;
}
.news-card-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-date {
    font-size: 12px;
    color: #94a3b8;
}

/* 字体颜色辅助类 */
.text-orange { color: #f97316 !important; }
.text-blue { color: #3b82f6 !important; }
.text-green { color: #10b981 !important; }
.text-purple { color: #8b5cf6 !important; }

/* --------------------------------------------------------
   品牌入驻页专属样式 (page-join.html)
   -------------------------------------------------------- */
/* --------------------------------------------------------------------------
   风云榜页面专属样式 (page-ranking.html)
   -------------------------------------------------------------------------- */
.ranking-header-container {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ranking-subtitle-margin {
    margin-top: 16px;
}

.ranking-breadcrumb {
    /* margin-top: 14px; */
    margin-bottom:20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #94a3b8;
}

.ranking-breadcrumb a {
    color: #64748b;
}

.ranking-breadcrumb a:hover {
    color: #f97316;
}

/* --------------------------------------------------------------------------
   项目库页面专属样式 (list-page-projects.html)
   -------------------------------------------------------------------------- */
.project-star-icon {
    color: #94a3b8;
    margin-right: 4px;
}

.project-form-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.project-form-subtitle {
    color: #64748b;
    font-size: 12px;
    margin-bottom: 16px;
}

.project-mb-12 {
    margin-bottom: 12px;
}

.project-mb-16 {
    margin-bottom: 16px;
}

.project-input-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.project-input-field {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.project-submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
}

.project-security-tip {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 8px;
}

.bg-gray-50 {
    background-color: #f8fafc;
}

.ranking-page-container {
    margin-bottom: 60px;
}

/* 榜单白色卡片容器 */
.ranking-board {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    padding: 30px 40px;
    margin-top: 30px;
}

.ranking-board-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.ranking-board-header .update-time {
    font-size: 13px;
    color: #94a3b8;
}

/* 榜单表格 */
.ranking-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 16px; /* 调大表格整体字号 */
}

.ranking-table th {
    color: #94a3b8;
    font-weight: normal;
    padding: 16px 8px;
    font-size: 16px; /* 调大表头字号 */
    border-bottom: 1px solid #f1f5f9;
}

.ranking-table td {
    padding: 20px 8px;
    font-size: 15px;
    color: #334155;
    border-bottom: 1px dashed #f1f5f9;
}

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

.ranking-table tbody tr:hover {
    background-color: #f8fafc;
}

/* 排名圆形徽章 */
.rank-badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.rank-badge-circle.top-1 {
    background-color: #fef08a; /* 黄色背景 */
    color: #ca8a04; /* 深黄/橙色文字 */
}

.rank-badge-circle.top-2 {
    background-color: #f1f5f9; /* 浅灰背景 */
    color: #475569; /* 深灰文字 */
}

.rank-badge-circle.top-3 {
    background-color: #ffedd5; /* 浅橙背景 */
    color: #ea580c; /* 深橙文字 */
}

.rank-badge-circle.normal {
    color: #94a3b8; /* 普通排名浅灰色文字，无背景 */
}

/* 指数得分进度条 */
.score-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.score-bar-wrap {
    width: 60px;
    height: 6px;
    background-color: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.score-bar {
    height: 100%;
    background-color: #f97316; /* 橙色进度条 */
    border-radius: 3px;
}

/* 操作列链接 */
.action-link {
    text-decoration: none;
    transition: opacity 0.2s;
}

.action-link:hover {
    opacity: 0.8;
}

/* 底部查看更多按钮 */
.ranking-board-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
}

.view-more-btn {
    display: inline-block;
    color: #334155;
    font-size: 14px;
    text-decoration: none;
}

.view-more-btn:hover {
    color: #f97316;
}

/* 补充通用工具类 */
.text-gray-500 { color: #64748b !important; }
.font-bold { font-weight: bold !important; }

/* Header贯通样式 */
.header-join {
    background-color: #0f172a; /* 使用统一深色背景，而不是透明 */
    border-bottom: none;
    position: relative; /* 改回 relative 或 static */
}
.header-join .logo-icon {
    background-color: #f97316;
}
.header-join .logo-text {
    color: #ffffff;
}
.header-join .nav-item {
    color: #cbd5e1;
}

.header-join .nav-item:hover,
.header-join .nav-item.active {
    color: #ffffff;
}

/* 顶部深色背景首屏 */
.join-hero-section {
    padding: 60px 0 80px 0; /* 由于 header 不再覆盖，减少顶部 padding */
    position: relative;
    overflow: hidden;
}
.join-hero-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #151F31 50%, #293445 50%);
    z-index: 1;
}
.join-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* stat-highlight - 10k+ 高亮颜色 */
.stat-highlight {
    color: #f97316 !important;
}

/* Section Header 布局变体 */
.join-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
}
.section-header-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-header-center {
    display: flex;
    justify-content: center;
}

/* 极简入驻流程标题间距 */
.join-steps-section {
    padding: 40px 0 80px; /* 减小上边距 */
    background-color: white; /* 保持白色，但卡片有阴影 */
}
.join-steps-section .join-section-header {
    padding-bottom: 0;
}
.join-steps-section .join-section-title {
    font-size: 40px; /* 字体变大 */
    margin-bottom: 40px; /* 增大与下方流程步骤的间距 */
}
.join-steps-section .join-section-subtitle {
    margin-bottom: 32px; /* 减小和下方步骤的间距 */
}

/* 表单安全提示样式 */
.form-security-tip {
    color: #94a3b8;
    font-size: 12px;
}

/* 左侧文案区 */
.join-hero-content {
    flex: 1;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.join-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15); /* 使用与文字同色系的半透明橙色 */
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3); /* 边框也改为橙色系半透明 */
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 24px;
    align-self: flex-start;
}
.join-hero-title {
    font-size: 56px;
    font-weight: 500; /* 减小粗体程度，原为 600 */
    color: white;
    line-height: 1.3;
    margin-bottom: 24px;
}
.text-orange {
    color: #f97316;
}
.join-hero-desc {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
}
.join-stats {
    display: flex;
    gap: 80px; /* 增大三组数据之间的间距，原为 40px */
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 14px;
    color: #94a3b8;
}

/* 右侧表单区 */
.join-hero-form {
    background-color: white;
    padding: 40px;
    flex: 1;
    margin-left: 120px; /* 进一步增加左侧外边距，使其更向右移动 */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.join-form-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #f97316;
    color: white;
    padding: 6px 16px;
    border-radius: 16px 16px 16px 0;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}
.join-form-title {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 12px;
}
.join-form-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.5;
}
.join-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: flex;
    gap: 16px;
}
.form-group.half {
    flex: 1;
}
.form-label {
    display: block;
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.form-input:focus {
    border-color: #f97316;
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}
.btn-submit-large {
    width: 100%;
    padding: 14px;
    background-color: #f97316;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}
.btn-submit-large:hover {
    background-color: #ea580c;
}
.btn-submit-dark {
    background-color: #0f172a;
}
.btn-submit-dark:hover {
    background-color: #1e293b;
}

/* 公共区块标题 */
.join-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}
.join-section-title::after {
    display: none !important;
}
.join-section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 48px;
    text-align: center;
    width: 100%;
}

/* 优势特色区 */
.join-feature-section {
    padding: 80px 0;
    background-color: white;
}
.join-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background-color: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.feature-icon-wrapper {
    width: 64px; /* 增大图标容器，原为 48px */
    height: 64px; /* 增大图标容器，原为 48px */
    border-radius: 16px; /* 稍微增加圆角以匹配更大的尺寸 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px; /* 增大内部 emoji 图标字体大小，原为 24px */
}
.bg-blue-light { background-color: #eff6ff; }
.bg-gray-light { background-color: #f8fafc; }

/* 加盟流程页 (page-join-process.html) 特定布局样式 */
.process-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.process-form-col {
    margin-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.process-form-col .join-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.process-form-col .join-form .form-group:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.process-form-col .join-form .form-textarea {
    flex: 1;
}
.process-feature-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.text-left {
    text-align: left !important;
}
.process-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feature-card-horizontal {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
}
.feature-card-horizontal .feature-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
}
.feature-card-horizontal .feature-title {
    margin-bottom: 8px;
}

.bg-orange-light { background-color: #fff7ed; }
.bg-green-light { background-color: #f0fdf4; }
.bg-purple-light { background-color: #faf5ff; }
.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 12px;
}
.feature-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* 合作伙伴区 */
.join-partners-section {
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.join-partners-section .join-section-header {
    margin-bottom: 40px; /* 增加标题和图片之间的间距 */
}
.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 16px;
}
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.partner-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s;
}
.join-partners-section .join-section-title::after {
    display: none !important;
}
.partner-item:hover img {
    border-color: #cbd5e1;
}
.partner-item span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
.partners-note {
    font-size: 13px;
    color: #94a3b8;
}

/* 入驻流程区 */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 保持三个小版块的高度一致 */
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    gap: 40px;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 32px 24px;
    border-radius: 0 0 16px 16px; /* 调整圆角：上边平直，下边圆角 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    margin: 0;
    border-top: 6px solid #f97316; /* 增加与 header 中免费咨询按钮底色一致的橙色粗横线 */
}
.step-number {
    width: 64px;
    height: 64px;
    background-color: #DBEAFE;
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 0 10px white;
    flex-shrink: 0; /* 防止在 Flex 布局中被压缩成椭圆 */
}
.step-number.step-orange {
    background-color: #DBEAFE;
}
.step-title {
    font-size: 18px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 8px;
}
.step-desc {
    font-size: 16px; /* 增大说明性质文字的字体，原来是 14px */
    color: #64748b;
    flex-grow: 1; /* 让 desc 区域撑满剩余空间，帮助底部元素对齐 */
    display: flex;
    flex-direction: column;
    width: 100%;
    line-height: 1.6; /* 增加行高，提升大字体的阅读体验 */
}

/* 底部 CTA 区域 */
.join-cta-section {
    background-color: #1e293b;
    padding: 80px 0;
}
.cta-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 40px;
}
.cta-btn {
    width: auto;
    padding: 16px 48px;
    font-size: 18px;
    border-radius: 30px;
}

/* 标签样式 */
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    min-width: 44px;
}

.tag-green { background: var(--tag-green-bg); color: var(--tag-green-text); }
.tag-red { background: var(--tag-red-bg); color: var(--tag-red-text); }
.tag-orange { background: var(--tag-orange-bg); color: var(--tag-orange-text); }
.tag-blue { background: var(--tag-blue-bg); color: var(--tag-blue-text); }
.tag-cyan { background: var(--tag-cyan-bg); color: var(--tag-cyan-text); }
.tag-gray { background: var(--tag-gray-bg); color: var(--tag-gray-text); }

/* 热门项目库 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 24px;
}

.category-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color); /* 浅灰色边框线 */
    border-radius: 8px; /* 圆角 */
    overflow: hidden; /* 保证内部元素不超出圆角 */
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e5e7eb;
    color: #ffffff; /* 因为底色变深，文字改为白色 */
}

.category-title i {
    color: #ffffff;
    font-size: 18px;
}

/* 餐饮类标题底色 */
.bg-catering {
    background-color: #DD3333;
}

/* 教育类标题底色 */
.bg-education {
    background-color: #0066CC;
}

/* 生活服务类标题底色 */
.bg-life {
    background-color: #1A8858;
}

.category-list {
    list-style: none;
    padding: 16px; /* 增加整体内边距 */
    display: grid;
    grid-template-columns: 1fr 1fr; /* 两列布局 */
    gap: 16px 12px; /* 设置行间距和列间距 */
}

.category-list li a {
    color: #0066cc; /* 修改文字颜色 */
    text-decoration: none;
    font-size: 16px; /* 文字变大 */
    transition: color 0.2s;
    display: block; /* 让链接占满整行，更好点击 */
}

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

/* 小版块镂空按钮通用样式 */
.category-card-footer {
    padding: 16px 16px 20px 16px; /* 增加顶部内边距，拉开与上方文字的间距 */
    text-align: center;
}

.btn-outline {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

/* 餐饮类镂空按钮 */
.btn-outline-catering {
    border: 1px solid #DD3333;
    color: #DD3333;
}
.btn-outline-catering:hover {
    background-color: #DD3333;
    color: #ffffff;
}

/* 教育类镂空按钮 */
.btn-outline-education {
    border: 1px solid #0066CC;
    color: #0066CC;
}
.btn-outline-education:hover {
    background-color: #0066CC;
    color: #ffffff;
}

/* 生活服务类镂空按钮 */
.btn-outline-life {
    border: 1px solid #1A8858;
    color: #1A8858;
}
.btn-outline-life:hover {
    background-color: #1A8858;
    color: #ffffff;
}

/* 双栏榜单 */
.rank-grids {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rank-list {
    list-style: none;
    padding: 0 16px; /* 增加左右16px的内边距，留出边缘留白 */
}

.rank-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

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

.rank-num {
    width: 24px;
    height: 24px;
    background-color: #e2e8f0;
    color: var(--text-secondary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 12px;
}

.rank-num.top-1 {
    background-color: #ef4444; /* 最深（红色） */
    color: #ffffff;
}

.rank-num.top-2 {
    background-color: #f97316; /* 中等（橙色） */
    color: #ffffff;
}

.rank-num.top-3 {
    background-color: #f59e0b; /* 较浅（黄色） */
    color: #ffffff;
}

.rank-name {
    font-size: 16px; /* 品牌名称字体变大 */
    color: var(--text-main);
    font-weight: 500;
}

.rank-category {
    font-size: 14px; /* 分类字体 */
    color: #94a3b8; /* 颜色改浅 */
    margin-left: auto; /* 将分类文字推到最右侧 */
}

/* 行业资讯 */
.news-list {
    padding: 0 24px;
}

.news-item {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px dashed var(--border-color);
    text-decoration: none;
    color: inherit;
}

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

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

.news-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.news-meta {
    margin-right: 16px;
    padding-top: 2px;
}

.news-content {
    flex: 1;
}

.news-tag {
    font-size: 12px;
    padding: 2px 0;
    width: 60px; /* 设置固定宽度以保证对齐 */
    text-align: center; /* 让不同字数的标签文本居中 */
    border-radius: 4px;
    margin-right: 12px;
    white-space: nowrap;
    display: inline-block; /* 允许设置宽度 */
    flex-shrink: 0; /* 防止被挤压 */
}

/* 行业资讯不同标签的底色 */
.news-tag.tag-blue {
    background-color: #e0f2fe;
    color: #2563eb;
}

.news-tag.tag-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.news-tag.tag-orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.news-tag.tag-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.news-tag.tag-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.news-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.2s;
}

.news-date {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: auto; /* 将日期推到最右侧 */
}

.news-desc {
    font-size: 14px;
    color: #94a3b8; /* 将颜色改得更浅（浅灰色） */
    line-height: 1.5;
    /* 为了和标题对齐，缩进量：标签的固定宽度(60px) + 标签的右边距(12px) = 72px */
    padding-left: 72px; 
}

/* 右侧边栏 */
.sidebar-card {
    padding: 20px;
}

.sidebar-card .section-header {
    padding: 0 0 16px;
    border-bottom: none;
}

/* 标签云 */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cloud-tag {
    background: var(--tag-gray-bg);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.cloud-tag:hover {
    background: var(--primary-color);
    color: white;
}

/* 主内容区的精选推荐项目图文栅格 */
.project-grid-main {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    padding: 20px 24px;
}

.project-card-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.project-card-main:hover {
    transform: translateY(-4px);
}

.project-card-main .img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #f8fafc;
}

.project-card-main .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-card-main .project-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.project-card-main:hover .project-name {
    color: var(--primary-color);
}

/* 搜索框 */
.search-wrap {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.input-search {
    width: 100%;
    padding: 14px 80px 14px 16px; /* 右侧留出按钮的空间，上下内边距加大 */
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px; /* 字体改大 */
    background-color: transparent; /* 移除底色 */
    outline: none;
    transition: border-color 0.2s;
}

.input-search:focus {
    border-color: var(--primary-color);
}

.btn-search {
    position: absolute;
    right: 4px; /* 内嵌在右侧 */
    top: 50%;
    transform: translateY(-50%);
    background-color: #f97316; /* 和 header 中 btn-orange 保持一致 */
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-search:hover {
    background-color: #ea580c; /* hover 时稍微加深颜色 */
}

/* 推荐列表 */
.recommend-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recommend-link {
    display: flex;
    align-items: center; /* 左侧图片和右侧文字整体水平对齐 */
    gap: 12px; /* 图片和右侧文字的间距 */
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none; /* 确保没有下划线 */
    color: inherit;
}

.recommend-link:hover {
    background: #f1f5f9;
}

.recommend-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.recommend-info {
    display: flex;
    flex-direction: column; /* 文字部分垂直排列 */
    align-items: flex-start;
    gap: 6px; /* 标题和标签之间的垂直间距 */
}

.recommend-title {
    font-size: 14px;
    font-weight: 500;
}

.recommend-badge {
    font-size: 12px;
    color: var(--text-secondary);
}

/* 内嵌的发布项目区块 */
.publish-card-inner {
    margin-top: 24px;
    padding: 24px; /* 添加内边距 */
    border-radius: 8px; /* 添加圆角 */
    /* 移除虚线边框，因为现在有深色背景了 */
}

/* 按钮通用类 */
.btn-block {
    display: block;
    width: 100%;
}

.info-pack-card {
    position: relative;
    overflow: hidden; /* 确保半圆不会溢出卡片 */
}

.info-pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-color: #FFF7ED;
    border-radius: 0 0 0 100%; /* 右上角的四分之一圆，或调整使其看起来像设计图 */
    z-index: 0; /* 放在底层 */
}

/* 保证卡片内容在半圆之上 */
.info-pack-card > * {
    position: relative;
    z-index: 1;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color);
}

.form-control::placeholder {
    color: #94a3b8; /* 浅色 */
    font-size: 12px; /* 文字改小 */
    font-weight: 600; /* 改为粗体 */
}

.form-tip {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 4px;
}

/* 网站尾部 */
.footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding-top: 40px;
    width: 100%; /* 确保页脚占满全屏宽度 */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

/* 文章详情页专属样式 (article.html) */
.article-main-container {
    margin-top: 30px;
}

/* 首页专属独立样式 (index.html) */
.cta-title {
    color: #fff;
    margin-bottom: 16px;
}

/* ==========================================================================
   加盟流程页专属样式 (page-join-process.html)
   ========================================================================== */
.step-desc-container {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-desc-text {
    flex-grow: 1;
}

.step-action-link {
    color: #f97316;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    gap: 4px;
    cursor: pointer;
}

.step-status-text {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    gap: 4px;
}

/* ==========================================================================
   项目库专属样式 (list-page-projects.html)
   ========================================================================== */

/* 顶部搜索栏 */
.project-search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent; /* 移除背景色 */
    padding: 12px 0; /* 调整内边距，因为没有背景色了 */
    margin-bottom: 24px;
}

.search-input-wrap {
    flex: 1;
    margin-right: 20px;
}

.project-search-input {
    width: 100%;
    padding: 16px 24px; /* 调大搜索框的内边距 */
    border: 1px solid #e2e8f0;
    border-radius: 8px; /* 稍微调大圆角 */
    font-size: 16px; /* 调大字体 */
    outline: none;
    color: #334155;
    background-color: #f8fafc; /* 让搜索框本身有一点极浅的背景色以区分 */
}

.project-search-input::placeholder {
    color: #94a3b8;
}

.search-result-text {
    font-size: 14px;
    color: #64748b;
    white-space: nowrap;
}

/* 筛选卡片 */
.project-filter-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 24px;
}

.filter-row {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.filter-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-row:first-child {
    padding-top: 0;
}

.filter-label {
    width: 80px;
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
    flex-shrink: 0;
}

.filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-tag {
    padding: 6px 16px;
    font-size: 13px;
    color: #64748b;
    background-color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.filter-tag:hover {
    background-color: #f1f5f9;
}

/* 行业分类 - 蓝色主题 */
.filter-tag.tag-blue {
    background-color: #eff6ff; /* 浅蓝色底色 */
    color: #3b82f6;
    border: none;
}
.filter-tag.tag-blue:hover {
    background-color: #dbeafe;
}
.filter-tag.active-blue {
    background-color: #3b82f6;
    color: #ffffff;
}

/* 项目类型 - 深色主题 (根据用户描述改为浅蓝/对应浅色) */
.filter-tag.tag-dark {
    background-color: #e2e8f0; /* 比header #0f172a 浅得多的灰色底色 */
    color: #475569;
    border: none;
}
.filter-tag.tag-dark:hover {
    background-color: #cbd5e1;
}
.filter-tag.active-dark {
    background-color: #0f172a; /* 和 header 一样的底色 */
    color: #ffffff;
}

/* 投资金额 - 橙色主题 */
.filter-tag.tag-orange {
    background-color: #fff7ed; /* 浅橙色底色 */
    color: #ea580c;
    border: none;
}
.filter-tag.tag-orange:hover {
    background-color: #ffedd5;
}
.filter-tag.active-orange {
    background-color: #f97316;
    color: #ffffff;
}

/* 热门标签 - 绿色主题 */
.filter-tag.tag-green {
    background-color: #f0fdf4;
    color: #16a34a;
    border: none; /* 移除边框 */
}

.filter-tag.tag-green:hover {
    background-color: #dcfce7;
}

.filter-tag.active-green {
    background-color: #10b981;
    color: #ffffff;
    border: none; /* 移除边框 */
}

/* 排序操作栏 */
.project-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff; /* 添加白色背景 */
    padding: 16px 24px; /* 调整内边距，使内容不贴边 */
    border-radius: 12px; /* 添加圆角 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02); /* 添加和上方筛选卡片一样的阴影 */
    margin-bottom: 16px;
}

.sort-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-label {
    font-size: 14px;
    color: #64748b;
}

.sort-select {
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    color: #334155;
    outline: none;
    background-color: #ffffff;
    cursor: pointer;
}

.sort-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

.view-icon:hover {
    background-color: #f8fafc;
    color: #64748b;
}

.view-icon.active {
    color: #f97316;
    border-color: #ffedd5;
    background-color: #fff7ed;
}

/* 项目列表区 */
.project-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s, transform 0.2s;
}

.project-list-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.item-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 20px;
    position: relative;
}

.item-info::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
}

.item-title {
    font-size: 18px;
    font-weight: bold;
    color: #1e293b;
    margin: 0;
}

.item-desc {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.item-tags {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.item-tags .tag {
    font-size: 12px;
    padding: 2px 8px;
    background-color: #f1f5f9;
    color: #64748b;
    border-radius: 4px;
}

.item-stats {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
}

.item-stats::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
}

.stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #94a3b8;
}

.stat-val {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
}

.item-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-left: 20px;
}

.btn-outline-gray {
    padding: 8px 24px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #475569;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-gray:hover {
    border-color: #f97316;
    color: #f97316;
}

.project-btn-wide {
    padding-left: 40px;
    padding-right: 40px;
}

/* 分页样式调整 */
.project-pagination {
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 40px;
}

/* 新闻列表页专属样式 (list-page-news.html) */
.news-pagination {
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links li {
    color: #94a3b8;
    font-size: 16px;
}

.footer-links a:hover {
    color: #ffffff;
}

.qrcode-container {
    display: flex;
    gap: 40px; /* 增大两个二维码之间的间距，原为 20px */
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* 图片和文字的间距 */
}

.qrcode-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #1e293b; /* 图片加载失败时的底色 */
}

.qrcode-desc {
    color: #94a3b8;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    color: #64748b;
    font-size: 13px;
}
