.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-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; color: #ffffff; }
.publish-card .title {
color: #ffffff;
}
.btn-publish-square {
background-color: #f97316; color: #ffffff;
border: none;
padding: 14px 16px; border-radius: 4px; 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; margin-left: auto;
margin-right: 60px; }
.nav-item {
font-size: 18px; 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;
} .sidebar-card .title::before,
.sidebar-card > .title::before {
display: none;
}
.link-more {
font-size: 16px; 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-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-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;
} .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; }
.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; border: 1px solid #e2e8f0; }
.news-solid-tab:hover {
color: #1e293b;
background-color: #f8fafc;
}
.news-solid-tab.active {
background-color: #1e293b; 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; }  .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-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;
} .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-join {
background-color: #0f172a; border-bottom: none;
position: relative; }
.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; 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 {
color: #f97316 !important;
} .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; 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; }
.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; height: 64px; border-radius: 16px; display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
font-size: 32px; }
.bg-blue-light { background-color: #eff6ff; }
.bg-gray-light { background-color: #f8fafc; } .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; }
.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; }
.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; color: #64748b;
flex-grow: 1; display: flex;
flex-direction: column;
width: 100%;
line-height: 1.6; } .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;
} span.tag,
a.tag,
em.tag,
strong.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; }
.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; 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; 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; } .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-main-container {
margin-top: 30px;
} .cta-title {
color: #fff;
margin-bottom: 16px;
} .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;
}  .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; color: #475569;
border: none;
}
.filter-tag.tag-dark:hover {
background-color: #cbd5e1;
}
.filter-tag.active-dark {
background-color: #0f172a; 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;
} .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; }
.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;
}