:root {
--primary: #fe2c55;
--dark: #161823;
--light: #f8f9fa;
--gray: #868694;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #fff;
color: var(--dark);
font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
a {
text-decoration: none;
color: inherit;
transition: color 0.3s;
}
a:hover {
color: var(--primary);
}
ul {
list-style: none;
}
.site-nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
z-index: 999;
padding: 12px 0;
}
.nav-inner {
display: flex;
justify-content: space-between;
align-items: center;
}
.site-logo {
font-size: 22px;
font-weight: bold;
color: var(--primary);
letter-spacing: 1px;
}
.site-logo a:hover {
color: var(--primary);
}
.nav-menu {
display: flex;
gap: 24px;
}
.nav-menu a {
font-weight: 500;
font-size: 15px;
position: relative;
}
.nav-menu a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s;
}
.nav-menu a:hover::after {
width: 100%;
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 5px;
}
.menu-toggle span {
display: block;
width: 25px;
height: 2px;
background: var(--dark);
transition: 0.3s;
}
.hero-header {
margin-top: 62px;
padding: 100px 20px 80px;
background: linear-gradient(135deg, var(--primary), #ff6b81);
color: #fff;
text-align: center;
position: relative;
overflow: hidden;
}
.hero-header::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
animation: pulse 6s ease-in-out infinite;
will-change: transform;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.hero-header .container {
position: relative;
z-index: 1;
}
.hero-header h1 {
font-size: 40px;
font-weight: 800;
margin-bottom: 20px;
letter-spacing: 2px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.hero-header p {
font-size: 18px;
max-width: 750px;
margin: 0 auto 40px;
opacity: 0.95;
line-height: 1.8;
}
.header-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
}
.main-btn {
display: inline-block;
padding: 16px 45px;
background: #fff;
color: var(--primary) !important;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
cursor: pointer;
border: none;
}
.main-btn:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
color: var(--primary) !important;
}
.btn-outline {
background: transparent;
border: 2px solid #fff;
color: #fff !important;
}
.btn-outline:hover {
background: #fff;
color: var(--primary) !important;
}
.section {
padding: 80px 0;
}
.section.bg-light {
background: var(--light);
}
.section-title {
font-size: 32px;
text-align: center;
margin-bottom: 15px;
font-weight: 700;
color: var(--dark);
}
.section-desc {
text-align: center;
color: var(--gray);
margin-bottom: 50px;
font-size: 16px;
}
.title-line {
width: 60px;
height: 3px;
background: var(--primary);
margin: 10px auto 0;
border-radius: 2px;
}
.cards-row {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.card {
background: #fff;
border-radius: 16px;
padding: 35px 30px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
border: 1px solid rgba(0, 0, 0, 0.04);
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.card-icon {
width: 56px;
height: 56px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
margin-bottom: 20px;
background: linear-gradient(135deg, rgba(254, 44, 85, 0.1), rgba(255, 107, 129, 0.1));
}
.card h3 {
color: var(--primary);
margin-bottom: 12px;
font-size: 20px;
font-weight: 700;
}
.card p {
color: #666;
line-height: 1.8;
font-size: 15px;
}
.faq-wrap {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid #eee;
padding: 20px 0;
transition: background 0.3s;
}
.faq-item:last-child {
border-bottom: none;
}
.faq-q {
cursor: pointer;
user-select: none;
font-weight: bold;
font-size: 17px;
color: var(--dark);
display: flex;
align-items: center;
gap: 10px;
padding-right: 30px;
position: relative;
transition: color 0.3s;
}
.faq-q:hover {
color: var(--primary);
}
.faq-q::before {
content: 'Q';
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 28px;
width: 28px;
height: 28px;
background: var(--primary);
color: #fff;
border-radius: 50%;
font-size: 13px;
font-weight: bold;
flex-shrink: 0;
}
.faq-a {
color: #666;
padding-left: 38px;
line-height: 1.8;
}
.cta-section {
text-align: center;
padding: 80px 20px;
background: linear-gradient(135deg, var(--dark), #2a2a3a);
color: #fff;
}
.cta-section h2 {
font-size: 30px;
margin-bottom: 15px;
font-weight: 700;
}
.cta-section p {
font-size: 16px;
opacity: 0.8;
margin-bottom: 35px;
}
.hero-particles {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}
.hero-float {
position: absolute;
font-size: 28px;
opacity: 0.2;
animation: heroFloat 8s ease-in-out infinite;
will-change: transform;
contain: layout;
}
.hero-float.f1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 32px; }
.hero-float.f2 { top: 20%; right: 12%; animation-delay: 1.5s; font-size: 26px; }
.hero-float.f3 { bottom: 25%; left: 8%; animation-delay: 3s; font-size: 30px; }
.hero-float.f4 { bottom: 20%; right: 10%; animation-delay: 4.5s; font-size: 24px; }
.hero-float.f5 { top: 60%; left: 50%; animation-delay: 2s; font-size: 20px; }
.hero-float.f6 { top: 10%; left: 50%; animation-delay: 5.5s; font-size: 22px; }
@keyframes heroFloat {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(10deg); }
}
.hero-platforms {
display: flex;
justify-content: center;
gap: 12px;
margin-bottom: 24px;
flex-wrap: wrap;
}
.hero-tag {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 20px;
background: rgba(255, 255, 255, 0.18);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50px;
font-size: 14px;
font-weight: 600;
color: #fff;
backdrop-filter: blur(4px);
transition: all 0.3s;
}
.hero-tag:hover {
background: rgba(255, 255, 255, 0.28);
transform: translateY(-2px);
}
.hero-stats {
display: flex;
justify-content: center;
gap: 50px;
margin-top: 50px;
flex-wrap: wrap;
}
.hero-stat-item {
text-align: center;
}
.hero-stat-num {
display: block;
font-size: 36px;
font-weight: 800;
letter-spacing: 2px;
font-variant-numeric: tabular-nums; }
.hero-stat-label {
display: block;
font-size: 13px;
opacity: 0.75;
margin-top: 4px;
font-weight: 400;
}
.platform-header {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 15px;
}
.platform-emoji {
font-size: 32px;
display: inline-block;
animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.platform-douyin .platform-emoji { animation-delay: 0s; }
.platform-kuaishou .platform-emoji { animation-delay: 0.5s; }
.platform-xhs .platform-emoji { animation-delay: 1s; }
.platform-header .section-title {
margin-bottom: 0;
}
.card-accent-dy .card-icon {
background: linear-gradient(135deg, rgba(254, 44, 85, 0.15), rgba(254, 44, 85, 0.06));
}
.card-accent-dy:hover {
border-color: rgba(254, 44, 85, 0.2);
box-shadow: 0 15px 35px rgba(254, 44, 85, 0.12);
}
.card-accent-dy h3 { color: #fe2c55; }
.card-accent-ks .card-icon {
background: linear-gradient(135deg, rgba(255, 109, 0, 0.15), rgba(255, 170, 0, 0.06));
}
.card-accent-ks:hover {
border-color: rgba(255, 109, 0, 0.2);
box-shadow: 0 15px 35px rgba(255, 109, 0, 0.12);
}
.card-accent-ks h3 { color: #ff6d00; }
.card-accent-xhs .card-icon {
background: linear-gradient(135deg, rgba(255, 36, 66, 0.15), rgba(255, 68, 98, 0.06));
}
.card-accent-xhs:hover {
border-color: rgba(255, 36, 66, 0.2);
box-shadow: 0 15px 35px rgba(255, 36, 66, 0.12);
}
.card-accent-xhs h3 { color: #ff2442; }
.compare-section {
background: #fff;
}
.compare-table-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin: 40px 0 50px;
border-radius: 14px;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
.compare-table {
width: 100%;
border-collapse: collapse;
min-width: 700px;
font-size: 15px;
}
.compare-table thead th {
background: var(--dark);
color: #fff;
padding: 16px 20px;
font-size: 16px;
font-weight: 600;
text-align: center;
white-space: nowrap;
}
.compare-table thead th:first-child {
text-align: left;
border-radius: 14px 0 0 0;
}
.compare-table thead th:last-child {
border-radius: 0 14px 0 0;
}
.compare-table .col-dy { background: linear-gradient(135deg, #fe2c55, #ff6b81); }
.compare-table .col-ks { background: linear-gradient(135deg, #ff6d00, #ffa000); }
.compare-table .col-xhs { background: linear-gradient(135deg, #ff2442, #ff4462); }
.compare-table tbody td {
padding: 14px 20px;
border-bottom: 1px solid #f2f2f2;
text-align: center;
color: #444;
background: #fff;
}
.compare-table tbody td:first-child {
text-align: left;
font-weight: 600;
color: var(--dark);
background: #fafafa;
}
.compare-table tbody tr:hover td {
background: #fef5f7;
}
.compare-table tbody tr:last-child td:first-child {
border-radius: 0 0 0 14px;
}
.compare-table tbody tr:last-child td:last-child {
border-radius: 0 0 14px 0;
}
.compare-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.compare-card {
text-align: center;
padding: 30px 24px;
border-radius: 14px;
background: #fff;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
border: 2px solid transparent;
}
.compare-card:hover {
transform: translateY(-6px);
}
.compare-dy { border-top: 3px solid #fe2c55; }
.compare-dy:hover { border-color: #fe2c55; box-shadow: 0 12px 30px rgba(254, 44, 85, 0.15); }
.compare-ks { border-top: 3px solid #ff6d00; }
.compare-ks:hover { border-color: #ff6d00; box-shadow: 0 12px 30px rgba(255, 109, 0, 0.15); }
.compare-xhs { border-top: 3px solid #ff2442; }
.compare-xhs:hover { border-color: #ff2442; box-shadow: 0 12px 30px rgba(255, 36, 66, 0.15); }
.compare-badge {
display: inline-block;
padding: 6px 18px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
margin-bottom: 16px;
}
.compare-dy .compare-badge { background: rgba(254, 44, 85, 0.1); color: #fe2c55; }
.compare-ks .compare-badge { background: rgba(255, 109, 0, 0.1); color: #ff6d00; }
.compare-xhs .compare-badge { background: rgba(255, 36, 66, 0.1); color: #ff2442; }
.compare-card h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--dark);
}
.compare-card p {
font-size: 14px;
color: #666;
line-height: 1.7;
}
.latest-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.latest-card {
background: #fff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
}
.latest-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.latest-thumb {
display: block;
position: relative;
aspect-ratio: 16 / 9;
overflow: hidden;
background: #f0f0f0;
}
.latest-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.latest-card:hover .latest-thumb img {
transform: scale(1.06);
}
.latest-no-img {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(254, 44, 85, 0.15), rgba(255, 107, 129, 0.1));
}
.latest-no-img span {
font-size: 40px;
font-weight: 800;
color: var(--primary);
opacity: 0.4;
}
.latest-cat {
position: absolute;
bottom: 10px;
left: 10px;
padding: 3px 12px;
background: rgba(254, 44, 85, 0.88);
color: #fff;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
backdrop-filter: blur(4px);
}
.latest-body {
padding: 16px;
}
.latest-title {
font-size: 16px;
font-weight: 600;
line-height: 1.5;
margin-bottom: 10px;
}
.latest-title a {
color: var(--dark);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.latest-title a:hover {
color: var(--primary);
}
.latest-meta {
display: flex;
justify-content: space-between;
font-size: 12px;
color: #bbb;
}
.latest-more {
text-align: center;
margin-top: 40px;
}
.btn-outline-dark {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary) !important;
display: inline-block;
padding: 16px 45px;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
transition: all 0.3s ease;
}
.btn-outline-dark:hover {
background: var(--primary);
color: #fff !important;
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(254, 44, 85, 0.25);
}
.faq-item .faq-q {
cursor: pointer;
user-select: none;
}
.faq-item .faq-q::after {
content: '\25BC';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 10px;
color: #ccc;
transition: transform 0.3s ease;
display: inline-block;
}
.faq-item.active .faq-q::after {
transform: translateY(-50%) rotate(180deg);
color: var(--primary);
}
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding-top 0.3s ease, opacity 0.3s ease;
opacity: 0;
}
.faq-item.active .faq-a {
max-height: 500px;
opacity: 1;
}
.site-footer {
background: var(--dark);
color: var(--gray);
padding: 30px 0;
font-size: 14px;
line-height: 1.8;
}
.footer-inner {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 16px;
}
.footer-copyright {
color: var(--gray);
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
.footer-links a {
color: var(--gray);
font-size: 13px;
}
.footer-links a:hover {
color: #fff;
}
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
.reading-bar {
position: fixed;
top: 60px;
left: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), #ff6b81);
z-index: 1000;
width: 0;
transition: width 0.1s linear;
}
.single-main {
margin-top: 62px;
padding: 30px 0 60px;
background: var(--light);
}
.single-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 40px;
align-items: start;
}
.breadcrumb {
font-size: 13px;
color: var(--gray);
margin-bottom: 20px;
}
.breadcrumb a {
color: var(--gray);
}
.breadcrumb a:hover {
color: var(--primary);
}
.breadcrumb .sep {
margin: 0 6px;
color: #ccc;
}
.breadcrumb .current {
color: var(--dark);
}
.single-content-wrap {
background: #fff;
border-radius: 16px;
padding: 40px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}
.single-article {
position: relative;
}
.single-title {
font-size: 32px;
font-weight: 800;
line-height: 1.4;
color: var(--dark);
margin-bottom: 20px;
}
.single-meta {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 25px;
padding-bottom: 20px;
border-bottom: 1px solid #f0f0f0;
}
.meta-item {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
color: var(--gray);
}
.meta-item svg {
color: #ccc;
}
.meta-cat a {
color: var(--primary);
font-weight: 500;
}
.meta-cat a:hover {
text-decoration: underline;
}
.single-thumbnail {
margin-bottom: 30px;
border-radius: 12px;
overflow: hidden;
}
.single-thumbnail img {
width: 100%;
height: auto;
display: block;
border-radius: 12px;
}
.single-body {
font-size: 17px;
line-height: 1.9;
color: #333;
word-break: break-all;
overflow-wrap: break-word;
}
.single-body h2 {
font-size: 24px;
font-weight: 700;
margin: 40px 0 20px;
padding-left: 14px;
border-left: 4px solid var(--primary);
color: var(--dark);
line-height: 1.4;
}
.single-body h3 {
font-size: 20px;
font-weight: 700;
margin: 30px 0 15px;
color: var(--dark);
}
.single-body h4 {
font-size: 18px;
font-weight: 600;
margin: 25px 0 12px;
color: #444;
}
.single-body p {
margin-bottom: 20px;
}
.single-body a {
color: var(--primary);
text-decoration: underline;
text-underline-offset: 3px;
}
.single-body a:hover {
color: #e02648;
}
.single-body strong {
font-weight: 700;
color: var(--dark);
}
.single-body img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 20px 0;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.single-body ul,
.single-body ol {
margin: 15px 0 20px 20px;
list-style: disc;
}
.single-body ol {
list-style: decimal;
}
.single-body li {
margin-bottom: 8px;
}
.single-body blockquote {
margin: 25px 0;
padding: 20px 24px;
background: linear-gradient(135deg, rgba(254, 44, 85, 0.04), rgba(255, 107, 129, 0.04));
border-left: 4px solid var(--primary);
border-radius: 0 8px 8px 0;
color: #555;
font-size: 16px;
}
.single-body blockquote p:last-child {
margin-bottom: 0;
}
.single-body code {
background: #f5f5f5;
padding: 2px 8px;
border-radius: 4px;
font-family: "Consolas", "Courier New", monospace;
font-size: 14px;
color: var(--primary);
}
.single-body pre {
background: #1e1e1e;
color: #d4d4d4;
padding: 20px 24px;
border-radius: 10px;
overflow-x: auto;
margin: 20px 0;
font-size: 14px;
line-height: 1.6;
}
.single-body pre code {
background: none;
padding: 0;
color: inherit;
font-size: inherit;
}
.single-body table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 15px;
}
.single-body th,
.single-body td {
border: 1px solid #e8e8e8;
padding: 12px 16px;
text-align: left;
}
.single-body th {
background: var(--light);
font-weight: 700;
color: var(--dark);
}
.single-body tr:nth-child(even) td {
background: #fafafa;
}
.single-body hr {
border: none;
border-top: 1px solid #eee;
margin: 30px 0;
}
.page-links {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #eee;
font-size: 15px;
color: var(--gray);
}
.page-links span {
display: inline-block;
min-width: 32px;
height: 32px;
line-height: 32px;
text-align: center;
background: var(--light);
border-radius: 6px;
color: var(--dark);
margin: 0 2px;
font-weight: 500;
}
.page-links a span {
background: var(--primary);
color: #fff;
}
.single-tags {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #f0f0f0;
}
.single-tags svg {
color: var(--primary);
flex-shrink: 0;
}
.single-tags a {
display: inline-block;
padding: 5px 14px;
background: var(--light);
color: var(--gray);
border-radius: 20px;
font-size: 13px;
transition: all 0.3s;
}
.single-tags a:hover {
background: var(--primary);
color: #fff;
}
.post-nav {
margin-top: 30px;
}
.post-nav-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.post-nav-inner a {
display: flex;
flex-direction: column;
padding: 20px;
background: #fff;
border-radius: 12px;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
transition: all 0.3s;
}
.post-nav-inner a:hover {
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}
.nav-label {
font-size: 12px;
color: var(--gray);
margin-bottom: 6px;
}
.nav-title {
font-size: 15px;
font-weight: 500;
color: var(--dark);
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.nav-next {
text-align: right;
}
.related-posts {
margin-top: 40px;
}
.related-title {
font-size: 20px;
font-weight: 700;
margin-bottom: 20px;
padding-left: 14px;
border-left: 4px solid var(--primary);
}
.related-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.related-item {
display: flex;
flex-direction: column;
background: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
transition: all 0.3s;
}
.related-item:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.related-thumb {
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
}
.related-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s;
}
.related-item:hover .related-thumb img {
transform: scale(1.05);
}
.related-item-title {
display: block;
padding: 12px 14px 4px;
font-size: 14px;
font-weight: 500;
color: var(--dark);
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.related-item-date {
padding: 0 14px 12px;
font-size: 12px;
color: #bbb;
}
.single-sidebar {
position: sticky;
top: 82px;
}
.sidebar-card {
background: #fff;
border-radius: 14px;
padding: 24px;
margin-bottom: 24px;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}
.sidebar-card.sticky {
position: sticky;
top: 82px;
}
.sidebar-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 16px;
padding-left: 12px;
border-left: 3px solid var(--primary);
}
.hot-posts {
list-style: none;
}
.hot-posts li {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 10px 0;
border-bottom: 1px dashed #f0f0f0;
}
.hot-posts li:last-child {
border-bottom: none;
padding-bottom: 0;
}
.hot-num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
background: #eee;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
color: #999;
flex-shrink: 0;
}
.hot-num.hot-top {
background: var(--primary);
color: #fff;
}
.hot-posts a {
font-size: 14px;
color: var(--dark);
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.hot-posts a:hover {
color: var(--primary);
}
.sidebar-cta p {
font-size: 14px;
color: var(--gray);
margin-bottom: 16px;
line-height: 1.7;
}
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 46px;
height: 46px;
background: var(--primary);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 15px rgba(254, 44, 85, 0.4);
opacity: 0;
visibility: hidden;
transition: all 0.3s;
z-index: 998;
font-size: 18px;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(254, 44, 85, 0.6);
}
.list-main {
margin-top: 62px;
padding: 40px 0 60px;
background: var(--light);
min-height: 60vh;
}
.list-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 40px;
align-items: start;
}
.list-content {
min-width: 0;
}
.list-header,
.archive-header,
.search-header {
background: #fff;
border-radius: 14px;
padding: 30px;
margin-bottom: 24px;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}
.search-breadcrumb,
.archive-breadcrumb {
font-size: 13px;
color: var(--gray);
margin-bottom: 10px;
}
.search-breadcrumb a,
.archive-breadcrumb a {
color: var(--gray);
}
.search-breadcrumb a:hover,
.archive-breadcrumb a:hover {
color: var(--primary);
}
.search-breadcrumb .sep,
.archive-breadcrumb .sep {
margin: 0 6px;
color: #ccc;
}
.search-breadcrumb .current,
.archive-breadcrumb .current {
color: var(--dark);
font-weight: 500;
}
.list-page-title {
font-size: 28px;
font-weight: 800;
color: var(--dark);
margin-bottom: 8px;
line-height: 1.3;
}
.list-page-desc {
color: var(--gray);
font-size: 15px;
margin-top: 6px;
}
.archive-desc {
margin-top: 12px;
padding: 14px 18px;
background: #fdf6f7;
border-left: 4px solid var(--primary);
border-radius: 0 8px 8px 0;
color: #666;
font-size: 14px;
line-height: 1.7;
}
.archive-count {
margin-top: 10px;
font-size: 14px;
color: var(--gray);
}
.archive-count strong {
color: var(--primary);
}
.search-info {
color: var(--gray);
font-size: 15px;
margin-top: 8px;
line-height: 1.6;
}
.search-info strong {
color: var(--primary);
}
.list-posts {
display: flex;
flex-direction: column;
gap: 20px;
}
.list-card {
display: flex;
gap: 24px;
background: #fff;
border-radius: 14px;
padding: 24px;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease;
border: 1px solid transparent;
}
.list-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border-color: rgba(254, 44, 85, 0.12);
}
.list-thumb {
flex-shrink: 0;
width: 240px;
height: 160px;
border-radius: 10px;
overflow: hidden;
display: block;
}
.list-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.list-card:hover .list-thumb img {
transform: scale(1.05);
}
.list-body {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
}
.list-cats {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-bottom: 10px;
}
.list-cats a {
display: inline-block;
padding: 3px 12px;
background: rgba(254, 44, 85, 0.08);
color: var(--primary);
border-radius: 20px;
font-size: 12px;
font-weight: 500;
transition: all 0.3s;
}
.list-cats a:hover {
background: var(--primary);
color: #fff;
}
.list-title {
font-size: 20px;
font-weight: 700;
line-height: 1.4;
margin-bottom: 10px;
}
.list-title a {
color: var(--dark);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.list-title a:hover {
color: var(--primary);
}
.list-meta {
display: flex;
gap: 18px;
margin-bottom: 12px;
font-size: 13px;
color: var(--gray);
}
.list-excerpt {
font-size: 14px;
color: #666;
line-height: 1.8;
flex: 1;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.list-readmore {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--primary);
font-size: 14px;
font-weight: 600;
margin-top: auto;
padding-top: 12px;
transition: gap 0.3s;
}
.list-readmore:hover {
gap: 10px;
color: #e02648;
}
.list-empty {
text-align: center;
padding: 80px 20px;
background: #fff;
border-radius: 14px;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}
.list-empty svg {
display: block;
margin: 0 auto 20px;
}
.list-empty p {
color: var(--gray);
font-size: 16px;
}
.search-highlight {
background: #fff3cd;
color: #856404;
padding: 1px 4px;
border-radius: 3px;
font-weight: 500;
}
.pagination-nav {
margin-top: 40px;
text-align: center;
}
.pagination {
display: inline-flex;
gap: 6px;
flex-wrap: wrap;
justify-content: center;
}
.pagination .page-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 10px;
background: #fff;
color: var(--dark);
border-radius: 8px;
font-size: 14px;
font-weight: 500;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: all 0.3s;
text-decoration: none;
}
.pagination .page-link:hover {
background: rgba(254, 44, 85, 0.1);
color: var(--primary);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(254, 44, 85, 0.15);
}
.pagination .page-link.current {
background: var(--primary);
color: #fff;
box-shadow: 0 4px 12px rgba(254, 44, 85, 0.35);
}
.pagination .page-link.dots {
background: transparent;
box-shadow: none;
color: var(--gray);
cursor: default;
}
.pagination .page-link.dots:hover {
transform: none;
box-shadow: none;
color: var(--gray);
}
.list-sidebar {
position: sticky;
top: 82px;
}
@media (max-width: 768px) {
.site-nav {
padding: 10px 0;
}
.site-logo {
font-size: 18px;
}
.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
flex-direction: column;
padding: 10px 0;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
gap: 0;
border-top: 1px solid #f0f0f0;
}
.nav-menu.active {
display: flex;
}
.nav-menu li {
width: 100%;
}
.nav-menu a {
display: block;
padding: 14px 20px;
font-size: 16px;
border-bottom: 1px solid #f5f5f5;
}
.nav-menu a::after {
display: none;
}
.menu-toggle {
display: flex;
flex-direction: column;
gap: 4px;
cursor: pointer;
padding: 8px;
}
.menu-toggle span {
display: block;
width: 22px;
height: 2px;
background: var(--dark);
transition: 0.3s;
border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(4px, -4px);
}
.hero-header {
padding: 50px 16px 40px;
margin-top: 52px;
}
.hero-header h1 {
font-size: 24px;
letter-spacing: 0.5px;
}
.hero-header p {
font-size: 14px;
margin-bottom: 30px;
line-height: 1.7;
}
.header-buttons {
flex-direction: column;
gap: 12px;
}
.section {
padding: 40px 0;
}
.section-title {
font-size: 22px;
}
.section-desc {
font-size: 14px;
margin-bottom: 30px;
}
.container {
padding: 0 16px;
}
.cards-row {
grid-template-columns: 1fr;
gap: 16px;
}
.card {
padding: 22px 18px;
border-radius: 12px;
}
.card h3 {
font-size: 18px;
}
.card p {
font-size: 14px;
}
.card-icon {
width: 44px;
height: 44px;
font-size: 22px;
margin-bottom: 14px;
}
.faq-wrap {
max-width: 100%;
}
.faq-q {
font-size: 15px;
}
.faq-a {
font-size: 14px;
padding-left: 28px;
}
.cta-section {
padding: 50px 16px;
}
.cta-section h2 {
font-size: 22px;
}
.cta-section p {
font-size: 14px;
}
.single-main {
margin-top: 52px;
padding: 16px 0 40px;
}
.single-layout {
grid-template-columns: 1fr;
gap: 16px;
}
.single-content-wrap {
padding: 20px 16px;
border-radius: 0;
box-shadow: none;
}
.single-title {
font-size: 22px;
}
.single-meta {
gap: 10px;
font-size: 13px;
}
.single-body {
font-size: 16px;
line-height: 1.85;
}
.single-body h2 {
font-size: 19px;
margin: 30px 0 15px;
padding-left: 10px;
}
.single-body h3 {
font-size: 17px;
}
.single-body h4 {
font-size: 16px;
}
.single-body img {
border-radius: 6px;
margin: 14px 0;
}
.single-body blockquote {
padding: 16px 18px;
font-size: 14px;
}
.single-body pre {
padding: 14px 16px;
font-size: 13px;
border-radius: 8px;
margin: 14px -16px;
}
.single-body table {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
font-size: 13px;
}
.single-body th,
.single-body td {
padding: 8px 10px;
white-space: nowrap;
}
.single-body ul,
.single-body ol {
margin-left: 16px;
}
.single-tags {
margin-top: 30px;
gap: 8px;
}
.single-tags a {
padding: 6px 12px;
font-size: 12px;
}
.post-nav-inner {
grid-template-columns: 1fr;
gap: 12px;
}
.post-nav-inner a {
padding: 16px;
}
.nav-next {
text-align: left;
}
.related-posts {
margin-top: 30px;
}
.related-title {
font-size: 18px;
}
.related-grid {
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.related-item-title {
font-size: 13px;
padding: 8px 10px 2px;
}
.related-item-date {
padding: 0 10px 8px;
}
.single-sidebar {
position: static;
}
.sidebar-card {
padding: 20px 16px;
border-radius: 12px;
margin-bottom: 16px;
}
.sidebar-card.sticky {
position: static;
}
.sidebar-title {
font-size: 17px;
margin-bottom: 12px;
}
.hot-posts li {
padding: 8px 0;
}
.hot-posts a {
font-size: 14px;
}
.sidebar-cta p {
font-size: 13px;
}
.sidebar-cta .main-btn {
font-size: 15px;
padding: 13px 20px;
}
.main-btn {
padding: 14px 30px;
font-size: 16px;
width: 100%;
text-align: center;
}
.reading-bar {
top: 52px;
}
.list-main {
margin-top: 52px;
padding: 16px 0 30px;
}
.list-layout {
grid-template-columns: 1fr;
gap: 16px;
}
.list-header,
.archive-header,
.search-header {
padding: 20px 16px;
border-radius: 0;
margin-bottom: 12px;
box-shadow: none;
}
.list-page-title {
font-size: 21px;
}
.list-page-desc {
font-size: 13px;
}
.archive-desc {
font-size: 13px;
padding: 12px 14px;
}
.search-info {
font-size: 13px;
}
.list-card {
flex-direction: column;
gap: 16px;
padding: 0;
border-radius: 0;
box-shadow: none;
border-bottom: 1px solid #f0f0f0;
margin-bottom: 0;
}
.list-card:hover {
transform: none;
box-shadow: none;
border-color: transparent;
}
.list-thumb {
width: 100%;
height: 200px;
border-radius: 0;
}
.list-body {
padding: 0 16px 16px;
}
.list-title {
font-size: 17px;
}
.list-meta {
font-size: 12px;
gap: 12px;
}
.list-excerpt {
font-size: 13px;
-webkit-line-clamp: 2;
}
.list-readmore {
font-size: 13px;
}
.list-empty {
padding: 50px 20px;
border-radius: 0;
box-shadow: none;
}
.pagination-nav {
margin-top: 24px;
padding: 0 16px;
}
.pagination .page-link {
min-width: 36px;
height: 36px;
font-size: 13px;
border-radius: 6px;
}
.list-sidebar {
position: static;
}
.hero-float { display: none; }
.hero-platforms { gap: 8px; }
.hero-tag { font-size: 13px; padding: 6px 14px; }
.hero-stats { gap: 24px; margin-top: 35px; }
.hero-stat-num { font-size: 26px; }
.hero-stat-label { font-size: 11px; }
.compare-table-wrap {
margin: 30px -16px 35px;
border-radius: 0;
box-shadow: none;
}
.compare-table { font-size: 13px; min-width: 600px; }
.compare-table thead th { padding: 12px 10px; }
.compare-table tbody td { padding: 10px; }
.compare-cards { grid-template-columns: 1fr; gap: 16px; }
.latest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.latest-title { font-size: 14px; }
.latest-cat { font-size: 11px; padding: 2px 10px; }
.latest-more { margin-top: 28px; }
.btn-outline-dark { padding: 14px 30px; font-size: 16px; }
.back-to-top {
bottom: 20px;
right: 16px;
width: 40px;
height: 40px;
font-size: 16px;
}
.footer-inner {
flex-direction: column;
text-align: center;
gap: 12px;
}
.footer-links {
justify-content: center;
}
}
@media (max-width: 480px) {
.hero-header h1 {
font-size: 20px;
}
.single-title {
font-size: 20px;
}
.single-body {
font-size: 15px;
}
.single-body h2 {
font-size: 17px;
}
.single-body h3 {
font-size: 15px;
}
.related-grid {
grid-template-columns: 1fr;
}
.section-title {
font-size: 19px;
}
.faq-q {
font-size: 14px;
}
.faq-a {
font-size: 13px;
}
.breadcrumb {
font-size: 12px;
}
.list-page-title {
font-size: 19px;
}
.list-thumb {
height: 180px;
}
.list-title {
font-size: 16px;
}
.list-card .list-body {
padding: 0 12px 14px;
}
.list-header,
.archive-header,
.search-header {
padding: 16px 12px;
}
.latest-grid {
grid-template-columns: 1fr;
}
.hero-stats {
gap: 16px;
}
.hero-stat-num {
font-size: 22px;
}
.hero-tag {
font-size: 12px;
padding: 5px 12px;
}
.site-footer {
padding: 20px 0;
font-size: 12px;
}
.footer-links {
gap: 10px;
}
.footer-links a {
font-size: 12px;
}
}