.pdfjs-iframe,
.pdfjs-wrapper {
max-width: 100%;
}:root {
--primary: #0F4C81; --secondary: #FF6B35; --neutral: #F8F9FA;
--dark: #2C3333;
--light-gray: #f1f1f1;
--primary-color: #1a56db; --secondary-color: #0e9f6e; --accent-color: #ff5a1f; --light-color: #f9fafb;
--category-tech: #3b82f6;
--category-strategy: #8b5cf6;
--category-law: #ec4899;
--category-case: #f59e0b;
--gray-color: #6b7280;
--dark-color: #2C3333;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
body {
background-color: var(--light-color);
color: var(--dark-color);
line-height: 1.6;
font-family: 'Inter', system-ui, sans-serif;
}
.container {
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 20px;
}
a {
color: #165DFF;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #0E42CC;
} .search {
margin: 20px 0;
color: #666;
font-size: 14px;
}
.search a {
color: #666;
text-decoration: none;
}
.search a:hover {
color: #2c6ecb;
text-decoration: underline;
}
.search .current {
color: var(--dark-color);
font-weight: 500;
}
.search .search-title {
font-size: 1.4rem;
color: #333;
margin-bottom: 15px;
font-weight: 600;
}
.search .search-query-container {
margin-bottom: 20px;
} .search .search-box-container {
max-width: 600px;
margin: 0 auto 25px;
}
.search .search-form {
display: flex;
}
.search .search-input {
flex: 1;
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 4px 0 0 4px;
font-size: 16px;
outline: none;
}
.search .search-input:focus {
border-color: #2c6ecb;
}
.search .search-submit {
background-color: #2c6ecb;
color: white;
border: none;
padding: 0 15px;
border-radius: 0 4px 4px 0;
cursor: pointer;
transition: background-color 0.3s;
}
.search .search-submit:hover {
background-color: #1a56b8;
} .search .search-filters {
background: #f9f9f9;
padding: 15px;
border-radius: 6px;
margin-bottom: 25px;
}
.search .filter-label {
display: inline-block;
margin-right: 15px;
color: #666;
font-weight: 500;
}
.search .filter-options {
display: inline-block;
}
.search .filter-option {
display: inline-block;
padding: 6px 15px;
margin-right: 10px;
text-decoration: none;
border-radius: 4px;
background: white;
color: #333;
border: 1px solid #ddd;
transition: all 0.2s;
}
.search .filter-option.active {
background: #2c6ecb;
color: white;
border-color: #2c6ecb;
}
.search .filter-option:hover:not(.active) {
border-color: #2c6ecb;
color: #2c6ecb;
} .search .search-results-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.search .result-card {
background: white;
border-radius: 6px;
padding: 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: transform 0.2s, box-shadow 0.2s;
}
.search .result-card:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.search .result-title {
margin: 0 0 12px 0;
font-size: 1.1rem;
line-height: 1.4;
}
.search .result-title a {
color: #2c6ecb;
text-decoration: none;
border-bottom: 1px solid transparent;
transition: all 0.2s;
}
.search .result-title a:hover {
color: #1a56b8;
border-bottom-color: #1a56b8;
}
.search .result-excerpt {
color: #666;
font-size: 0.95rem;
line-height: 1.6;
margin: 0 0 15px 0;
}
.search .result-meta {
display: flex;
justify-content: space-between;
color: #999;
font-size: 0.85rem;
margin-bottom: 15px;
}
.search .result-link {
display: inline-block;
color: #2c6ecb;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
}
.search .result-link:hover {
text-decoration: underline;
} .search .pagination {
margin: 30px 0;
text-align: center;
}
.search .pagination ul {
list-style: none;
padding: 0;
margin: 0;
}
.search .pagination li {
display: inline-block;
margin: 0 4px;
}
.search .pagination a,
.search .pagination span {
display: inline-block;
padding: 8px 14px;
border: 1px solid #ddd;
border-radius: 4px;
color: #333;
text-decoration: none;
}
.search .pagination .current {
background: #2c6ecb;
color: white;
border-color: #2c6ecb;
}
.search .pagination a:hover:not(.current) {
border-color: #2c6ecb;
color: #2c6ecb;
} .search .no-results {
text-align: center;
padding: 40px 20px;
background: white;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
margin-bottom: 30px;
}
.search .no-results h3 {
color: #333;
margin-bottom: 15px;
}
.search .no-results p {
color: #666;
margin-bottom: 25px;
}
.search .suggested-searches {
margin-top: 30px;
}
.search .suggested-searches h4 {
color: #333;
margin-bottom: 15px;
font-size: 1rem;
}
.search .search-tags {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.search .search-tag {
display: inline-block;
padding: 6px 15px;
background: #f0f5ff;
color: #2c6ecb;
border-radius: 20px;
text-decoration: none;
font-size: 0.9rem;
transition: background-color 0.2s;
}
.search .search-tag:hover {
background: #e0ecff;
}  main {
padding-top: 10px;
padding-bottom: 60px;
} .breadcrumbs {
font-size: 14px;
color: #667085;
margin-bottom: 20px;
margin-top: 80px;
padding: 15px 0;
border-bottom: 1px solid var(--light-gray);
}
.breadcrumbs a {
color: var(--gray-color);
text-decoration: none;
}
.breadcrumbs a:hover {
color: var(--primary-color);
text-decoration: underline;
}
.breadcrumbs span {
margin: 0 8px;
color: rgba(0,0,0,.9);
}
.breadcrumbs .current {
color: var(--dark-color);
font-weight: 500;
} .article-header {
margin-bottom: 40px;
animation: fadeIn 0.6s ease forwards;
}
.article-title {
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
} .wenzhang-article-meta {
display: flex;
flex-wrap: wrap;
gap: 12px;
font-size: 14px;
color: #667085;
margin-bottom: 24px;
}
.meta-item {
display: flex;
align-items: center;
padding: 0 4px;
}
.article-cover {
width: 100%;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
margin-bottom: 32px;
}
.article-cover img {
width: 100%;
height: auto;
display: block;
}
.article-intro {
background-color: rgba(22, 93, 255, 0.05);
border-left: 4px solid #165DFF;
padding: 16px 24px;
border-radius: 0 8px 8px 0;
margin-bottom: 32px;
}
.article-intro p {
font-size: 18px;
color: #1D2939;
} .content-wrapper {
display: flex;
flex-direction: column;
gap: 32px;
}
@media (min-width: 1024px) {
.content-wrapper {
flex-direction: row;
}
.wenzhang-article-content {
width: 66.666%;
animation: fadeIn 0.6s ease forwards;
animation-delay: 0.1s;
}
} .article-card {
background-color: white;
border-radius: 8px;
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
padding: 24px 32px;
}
.article-body h2 {
font-size: 24px;
font-weight: 600;
margin: 32px 0 16px;
padding-bottom: 8px;
border-bottom: 1px solid #F2F4F7;
}
.article-body h3 {
font-size: 20px;
font-weight: 600;
margin: 24px 0 12px;
}
.article-body p {
margin-bottom: 16px;
}
.article-body ul {
margin: 0 0 10px 10px;
}
.article-body li {
margin-bottom: 8px;
}
.highlight-box {
background-color: rgba(22, 93, 255, 0.05);
border-left: 4px solid #165DFF;
padding: 16px;
border-radius: 0 8px 8px 0;
margin: 24px 0;
}
.highlight-box p {
font-style: italic;
margin-bottom: 0;
}
.article-image {
border-radius: 8px;
overflow: hidden;
margin: 24px 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.article-image img {
width: 100%;
height: auto;
transition: transform 0.5s ease;
}
.article-image:hover img {
transform: scale(1.02);
} .article-tags {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid #F2F4F7;
}
.tags-wrapper {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.tags-label {
color: #667085;
}
.tag-link {
background-color: rgba(22, 93, 255, 0.1);
color: #165DFF;
padding: 4px 12px;
border-radius: 20px;
font-size: 14px;
transition: background-color 0.3s ease;
}
.tag-link:hover {
background-color: rgba(22, 93, 255, 0.2);
} .author-info {
display: flex;
align-items: flex-start;
gap: 16px;
margin-top: 32px;
padding: 24px;
background-color: rgba(22, 93, 255, 0.05);
border-radius: 8px;
}
.index-author-info {
padding: 12px;
}
.author-avatar {
width: 64px;
height: 64px;
border-radius: 50%;
overflow: hidden;
border: 2px solid white;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.author-details h3 {
font-size: 18px;
margin-bottom: 8px;
}
.author-details p {
color: #667085;
margin-bottom: 0;
} .related-articles {
margin-top: 40px;
}
.related-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 16px;
}
.related-grid {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
@media (min-width: 768px) {
.related-grid {
grid-template-columns: repeat(3, 1fr);
}
}
.related-card {
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: all 0.3s ease;
text-decoration: none;
color: inherit;
}
.related-card:hover {
box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
transform: translateY(-2px);
}
.related-image {
height: 160px;
overflow: hidden;
}
.related-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.related-card:hover .related-image img {
transform: scale(1.05);
}
.related-content {
padding: 16px;
}
.related-card h4 {
font-weight: 500;
margin-bottom: 8px;
transition: color 0.3s ease;
}
.related-card:hover h4 {
color: #165DFF;
}
.related-date {
font-size: 12px;
color: #667085;
} .sidebar-sticky {
position: sticky;
top: 80px;
background-color: white;
border-radius: 8px;
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
padding: 24px;
} .toc {
margin-bottom: 32px;
}
.toc-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 16px;
padding-bottom: 8px;
border-bottom: 1px solid #F2F4F7;
}
.toc-list {
list-style: none;
}
.toc-item {
margin-bottom: 8px;
}
.toc-link {
color: #667085;
display: block;
padding: 4px 0;
transition: color 0.3s ease;
}
.toc-link:hover,
.toc-link.active {
color: #165DFF;
font-weight: 600;
} .subscribe-section {
margin-bottom: 32px;
padding: 20px;
background-color: rgba(22, 93, 255, 0.05);
border-radius: 8px;
}
.subscribe-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
}
.subscribe-text {
font-size: 14px;
color: #667085;
margin-bottom: 16px;
}
.subscribe-form {
display: flex;
flex-direction: column;
gap: 12px;
}
.subscribe-input {
padding: 10px 12px;
border: 1px solid #D0D5DD;
border-radius: 6px;
font-family: inherit;
}
.subscribe-input:focus {
outline: none;
border-color: #165DFF;
box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2);
}
.subscribe-button {
background-color: #165DFF;
color: white;
border: none;
padding: 10px 12px;
border-radius: 6px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s ease;
}
.subscribe-button:hover {
background-color: #0E42CC;
} .popular-articles {
margin-bottom: 32px;
}
.popular-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 16px;
padding-bottom: 8px;
border-bottom: 1px solid #F2F4F7;
}
.popular-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.popular-item {
display: flex;
gap: 12px;
text-decoration: none;
color: inherit;
transition: transform 0.3s ease;
}
.popular-item:hover {
transform: translateX(5px);
}
.popular-image {
width: 64px;
height: 64px;
border-radius: 4px;
overflow: hidden;
flex-shrink: 0;
}
.popular-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.popular-content h4 {
font-size: 14px;
font-weight: 500;
transition: color 0.3s ease;
margin-bottom: 4px;
}
.popular-item:hover h4 {
color: #165DFF;
}
.popular-meta {
font-size: 12px;
color: #667085;
} .expert-card {
padding: 20px;
background: linear-gradient(to bottom right, #165DFF, rgba(22, 93, 255, 0.8));
border-radius: 8px;
color: white;
}
.expert-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 8px;
}
.expert-text {
font-size: 14px;
opacity: 0.9;
margin-bottom: 16px;
}
.expert-button {
display: block;
width: 100%;
background-color: white;
color: #165DFF;
text-align: center;
padding: 10px 0;
border-radius: 6px;
font-weight: 500;
transition: background-color 0.3s ease;
text-decoration: none;
}
.expert-button:hover {
background-color: #f0f0f0;
} .wp-toc-container {
position: relative;
margin: 2rem 0;
padding: 1rem;
border: 1px solid #e0e0e0;
border-radius: 8px;
background-color: #f9f9f9;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.wp-toc-title {
margin: 0 0 1rem 0;
padding-bottom: 0.5rem;
font-size: 1.25rem;
font-weight: 600;
color: #2d3748;
border-bottom: 1px solid #e0e0e0;
}
.wp-toc-list {
list-style: none;
padding: 0;
margin: 0;
}
.wp-toc-list li {
margin: 0.5rem 0;
line-height: 1.6;
}
.wp-toc-list a {
color: #3182ce;
text-decoration: none;
transition: all 0.2s ease;
padding: 0.2rem 0;
display: inline-block;
}
.wp-toc-list a:hover {
color: #2c5282;
text-decoration: underline;
}
.wp-toc-list li ul {
list-style: none;
padding-left: 1.5rem;
margin: 0.5rem 0 0 0;
}
.wp-toc-list a.toc-active {
color: #e53e3e;
font-weight: 600;
} .social-share {
margin: 32px 0;
padding: 24px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.share-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 16px;
color: var(--dark-color);
}
.share-buttons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.share-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
border: none;
text-decoration: none;
gap: 6px;
}
.share-btn.wechat {
background-color: #07C160;
color: white;
}
.share-btn.weibo {
background-color: #E6162D;
color: white;
}
.share-btn.qq {
background-color: #12B7F5;
color: white;
}
.share-btn.copy-link {
background-color: var(--primary-color);
color: white;
}
.share-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} .wechat-qrcode {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 1001;
}
.wechat-qrcode.active {
display: flex;
}
.qrcode-content {
background-color: white;
padding: 24px;
border-radius: 8px;
text-align: center;
}
.qrcode-content img {
width: 200px;
height: 200px;
margin-bottom: 16px;
}
.qrcode-close {
position: absolute;
top: 20px;
right: 20px;
color: white;
font-size: 24px;
cursor: pointer;
} .copy-toast {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: rgba(0,0,0,0.8);
color: white;
padding: 8px 16px;
border-radius: 4px;
font-size: 14px;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.copy-toast.active {
opacity: 1;
} .comments-section {
background-color: white;
border-radius: 8px;
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
margin-top: 40px;
}
.comments-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 1px solid #F2F4F7;
}
.comments-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
color: #667085;
}
.comments-sort {
display: flex;
align-items: center;
gap: 12px;
}
.sort-btn {
background: none;
border: none;
color: #667085;
cursor: pointer;
padding: 4px 8px;
border-radius: 4px;
transition: all 0.3s ease;
}
.sort-btn.active {
background-color: rgba(22, 93, 255, 0.1);
color: #165DFF;
} .comments-list {
margin-bottom: 32px;
}
.comment-item {
display: flex;
gap: 16px;
padding: 16px 0;
border-bottom: 1px solid #F2F4F7;
}
.comment-item:last-child {
border-bottom: none;
}
.comment-avatar img {
width: 64px;
height: 64px;
border-radius: 50%;
object-fit: cover;
}
.comment-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.comment-author {
font-weight: 600;
font-size: 16px;
}
.comment-date {
font-size: 14px;
color: #667085;
padding-left: 10px;
}
.comment-text {
margin-bottom: 12px;
line-height: 1.6;
} .comment-form-section {
margin-top: 32px;
}
.comment-form-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 16px;
}
.comment-form-fields {
display: flex;
gap: 16px;
margin-bottom: 16px;
}
.comment-form-fields input {
flex: 1;
padding: 10px 12px;
border: 1px solid #D0D5DD;
border-radius: 6px;
font-family: inherit;
}
.comment-textarea {
width: 100%;
padding: 12px;
border: 1px solid #D0D5DD;
border-radius: 6px;
min-height: 120px;
font-family: inherit;
resize: vertical;
margin-bottom: 16px;
}
.comment-form input:focus, .comment-textarea:focus {
outline: none;
border-color: #165DFF;
box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2);
}
.comment-notes {
font-size: 14px;
color: #667085;
margin-bottom: 16px;
}
.no-comments, .comments-closed {
text-align: center;
padding: 32px;
color: #667085;
background-color: rgba(22, 93, 255, 0.05);
border-radius: 8px;
} .comments-pagination {
margin-top: 24px;
text-align: center;
}
.comments-pagination ul {
display: flex;
justify-content: center;
gap: 8px;
list-style: none;
}
.comments-pagination a, .comments-pagination span {
display: inline-block;
padding: 6px 12px;
border-radius: 4px;
text-decoration: none;
color: #667085;
border: 1px solid #F2F4F7;
}
.comments-pagination a:hover {
background-color: rgba(22, 93, 255, 0.1);
color: #165DFF;
border-color: #165DFF;
}
.comments-pagination .current {
background-color: #165DFF;
color: white;
border-color: #165DFF;
} @keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
background-color: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(4px);
transition: all 0.3s ease;
padding: 15px 0;
}
.nav-scrolled {
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 10px 0;
}
.navbar-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 1.5rem;
color: var(--primary);
text-decoration: none;
}
.logo-icon {
width: 40px;
height: 40px;
background-color: var(--primary);
color: white;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
} .main-nav {
display: none;
}
.nav-list {
display: flex;
gap: 30px;
align-items: center;
list-style: none;
}
.nav-item {
position: relative;
}
.nav-link {
font-weight: 500;
position: relative;
display: inline-block;
text-decoration: none;
color: var(--dark);
}
.nav-link:hover {
color: var(--secondary);
}
.nav-link.active {
color: var(--primary);
font-weight: 600;
}
.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background-color: var(--primary);
} .dropdown {
position: relative;
}
.dropdown-toggle {
display: flex;
align-items: center;
gap: 5px;
position: relative;
padding-right: 15px;
}
.dropdown-toggle::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid currentColor;
transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle::after {
transform: translateY(-50%) rotate(180deg);
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
width: 220px;
background-color: white;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
padding: 10px 0;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
z-index: 1000;
list-style: none;
}
.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dropdown-item {
display: block;
}
.dropdown-link {
display: block;
padding: 10px 20px;
color: var(--dark);
font-weight: 500;
text-decoration: none;
}
.dropdown-link:hover {
background-color: rgba(15, 76, 129, 0.05);
color: var(--primary);
padding-left: 25px;
} .btn {
display: inline-block;
padding: 0.8rem 2rem;
border-radius: 50px;
font-weight: 600;
text-align: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
border: none;
text-decoration: none;
}
.btn-primary {
background-color: var(--secondary);
color: white;
box-shadow: 0 4px 6px rgba(255, 107, 53, 0.2);
}
.btn-primary:hover {
background-color: #e55a28;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(255, 107, 53, 0.3);
}
.btn-secondary {
background-color: white;
color: var(--primary);
border: 2px solid var(--primary);
}
.btn-secondary:hover {
background-color: var(--primary);
color: white;
transform: translateY(-2px);
} .menu-toggle {
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
display: block;
} .mobile-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 15px 0;
}
.mobile-menu.active {
display: block;
}
.mobile-links {
display: flex;
flex-direction: column;
gap: 15px;
}
.mobile-links a {
padding: 10px 20px;
border-bottom: 1px solid var(--light-gray);
font-weight: 500;
text-decoration: none;
color: var(--dark);
}
.dhlx {
border-bottom: none;
background-color: var(--secondary);
color: white;
text-align: center;
border-radius: 8px;
margin: 10px 20px 0;
} .mobile-dropdown {
position: relative;
width: 100%;
}
.mobile-dropdown-toggle {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 20px;
border-bottom: 1px solid var(--light-gray);
width: 100%;
background: none;
border: none;
color: var(--dark);
font-weight: 500;
font-size: 1rem;
cursor: pointer;
}
.mobile-dropdown-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
width: 100%;
background-color: #f9f9f9;
}
.mobile-dropdown.active .mobile-dropdown-menu {
max-height: 500px;
}
.mobile-dropdown-menu a {
display: block;
padding: 12px 35px;
font-size: 0.95rem;
color: var(--dark);
border-bottom: 1px solid #eee;
width: 100%;
box-sizing: border-box;
text-decoration: none;
}
.mobile-dropdown-menu a:last-child {
border-bottom: none;
}
.mobile-dropdown-menu a:hover {
background-color: rgba(255, 107, 53, 0.08);
color: var(--secondary);
}
.mobile-dropdown-toggle::after {
content: "";
display: inline-block;
width: 8px;
height: 8px;
border-right: 2px solid var(--dark);
border-bottom: 2px solid var(--dark);
transform: rotate(45deg);
margin-left: 8px;
transition: transform 0.3s ease;
}
.mobile-dropdown.active .mobile-dropdown-toggle::after {
transform: rotate(-135deg);
margin-top: 4px;
} .category-header {
text-align: center;
margin-bottom: 40px;
padding: 40px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, #2d78e6 100%);
border-radius: 12px;
color: white;
box-shadow: 0 10px 30px rgba(26, 86, 219, 0.15);
}
.search-header {
text-align: center;
margin-bottom: 40px;
padding: 40px 0;
border-radius: 12px;
color: white;
}
.category-header h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}
.category-header p {
max-width: 800px;
margin: 0 auto;
opacity: 0.9;
font-size: 1.1rem;
} .search-container {
max-width: 700px;
margin: 0 auto 40px;
padding: 0 15px;
}
.search-form {
width: 100%;
}
.search-box {
display: flex;
position: relative;
width: 100%;
}
.search-input {
flex: 1;
padding: 14px 20px 14px 45px;
border: 1px solid #e2e8f0;
border-radius: 8px 0 0 8px;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.search-input:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.search-icon {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: #94a3b8;
font-size: 1.1rem;
}
.search-submit {
background: var(--primary-color);
color: white;
border: none;
padding: 0 25px;
border-radius: 0 8px 8px 0;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}
.search-submit:hover {
background: #1544b1;
}
.search-suggestions {
margin-top: 12px;
font-size: 0.9rem;
color: #64748b;
margin-bottom: 12px;
}
.search-suggestions a {
color: #64748b;
margin: 0 8px;
text-decoration: none;
transition: color 0.2s;
}
.search-suggestions a:hover {
color: var(--primary-color);
text-decoration: underline;
} .category-nav {
background: white;
border-radius: 12px;
padding: 20px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.category-nav h2 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--dark-color);
}
.featured-knowledge {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.featured-item {
background: var(--light-color);
padding: 15px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease;
cursor: pointer;
}
.featured-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.featured-item i {
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 10px;
}
.featured-item h3 {
font-size: 1rem;
margin-bottom: 5px;
}
.featured-item p {
font-size: 0.85rem;
color: var(--gray-color);
} .content-area {
display: grid;
grid-template-columns: 3fr 1fr;
gap: 30px;
margin-bottom: 40px;
} .lanmu-articles-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.lanmu-article-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
display: flex;
align-items: center;
padding-left: 15px;
}
.lanmu-article-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.lanmu-article-image {
width: 200px;
height: 140px;
object-fit: cover;
}
.lanmu-article-content {
padding: 20px;
flex: 1;
display: flex;
flex-direction: column;
}
.lanmu-article-meta {
display: flex;
font-size: 0.85rem;
color: var(--gray-color);
margin-bottom: 8px;
gap: 15px;
}
.lanmu-article-title {
font-size: 1.2rem;
margin-bottom: 10px;
line-height: 1.4;
}
.lanmu-article-title a {
color: var(--dark-color);
text-decoration: none;
transition: color 0.3s;
}
.lanmu-article-title a:hover {
color: var(--primary-color);
}
.lanmu-article-excerpt {
color: var(--gray-color);
font-size: 0.95rem;
margin-bottom: 15px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
flex: 1;
}
.lanmu-article-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.lanmu-article-tag {
font-size: 0.85rem;
padding: 3px 10px;
background: var(--light-color);
color: var(--gray-color);
border-radius: 4px;
text-decoration: none;
transition: all 0.3s;
}
.lanmu-article-tag:hover {
background: var(--primary-color);
color: white;
} .sidebar {
display: flex;
flex-direction: column;
gap: 30px;
}
.sidebar-card {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
font-size: 1.2rem;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
color: var(--dark-color);
} .tag-cloud {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tag-cloud a {
padding: 6px 12px;
background: var(--light-color);
color: var(--dark-color);
border-radius: 20px;
font-size: 0.9rem;
text-decoration: none;
transition: all 0.3s;
}
.tag-cloud a:hover {
background: var(--primary-color);
color: white;
transform: translateY(-2px);
} .pagination {
display: flex;
justify-content: center;
gap: 8px;
margin: 40px 0;
}
.page-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 6px;
background: white;
color: var(--dark-color);
text-decoration: none;
border: 1px solid var(--light-gray);
transition: all 0.3s;
}
.page-link:hover {
background: var(--light-color);
border-color: var(--primary-color);
color: var(--primary-color);
}
.page-link.active {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
}
.page-link.ellipsis {
border: none;
background: transparent;
cursor: default;
}
.page-link.ellipsis:hover {
background: transparent;
color: var(--dark-color);
border-color: var(--light-gray);
} .category-guides {
margin: 0 0 30px;
}
.guides-container {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.guide-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 25px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
color: var(--dark-color);
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
border: 1px solid var(--light-gray);
}
.guide-item:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
color: var(--primary-color);
border-color: var(--primary-color);
}
.guide-item i {
font-size: 1.2rem;
color: var(--primary-color);
} .templates {
padding: 80px 0;
background: #f3f4f6;
}
.templates-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.template-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
}
.template-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.template-image {
height: 200px;
position: relative;
overflow: hidden;
}
.template-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.template-card:hover .template-image img {
transform: scale(1.05);
}
.template-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary-color);
color: white;
padding: 5px 10px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
z-index: 1;
}
.template-badge.hot {
background: var(--accent-color);
}
.template-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}
.template-content h3 {
font-size: 1.3rem;
margin-bottom: 15px;
line-height: 1.4;
}
.template-content h3 a {
color: var(--dark-color);
text-decoration: none;
transition: color 0.3s;
}
.template-content h3 a:hover {
color: var(--primary-color);
}
.template-description {
color: var(--gray-color);
font-size: 0.95rem;
margin-bottom: 20px;
flex: 1;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.template-meta {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
color: var(--gray-color);
margin-bottom: 20px;
padding-top: 10px;
border-top: 1px solid #f1f5f9;
}
.template-actions {
display: flex;
gap: 10px;
}
.template-button {
flex: 1;
padding: 12px;
text-align: center;
border-radius: 6px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
font-size: 0.95rem;
}
.btn-preview {
background: white;
color: var(--primary-color);
border: 1px solid var(--primary-color);
}
.btn-preview:hover {
background: rgba(26, 86, 219, 0.05);
} .recommended-services {
background: white;
border-radius: 12px;
padding: 40px;
margin: 60px 0;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.recommended-title {
text-align: center;
margin-bottom: 30px;
}
.recommended-title h2 {
font-size: 1.8rem;
color: var(--dark-color);
margin-bottom: 10px;
}
.recommended-title p {
color: var(--gray-color);
max-width: 700px;
margin: 0 auto;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.service-card {
text-align: center;
padding: 30px;
border-radius: 10px;
transition: all 0.3s;
background: var(--light-color);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.service-icon {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 20px;
}
.service-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
}
.service-card p {
color: var(--gray-color);
margin-bottom: 20px;
}
.service-link {
display: inline-block;
color: var(--primary-color);
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}
.service-link:hover {
color: #1547b3;
text-decoration: underline;
} .faq-section {
padding: 40px 0;
background: #f8fafc;
border-radius: 12px;
margin-bottom: 60px;
}
.faq-title {
text-align: center;
margin-bottom: 30px;
}
.faq-title h2 {
font-size: 1.8rem;
color: var(--dark-color);
margin-bottom: 10px;
}
.faq-list {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
margin-bottom: 15px;
border-radius: 8px;
overflow: hidden;
background: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.faq-question {
width: 100%;
padding: 15px 20px;
text-align: left;
background: none;
border: none;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-question::after {
content: '+';
font-size: 1.5rem;
color: var(--primary-color);
transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 20px;
background: white;
}
.faq-item.active .faq-answer {
max-height: 500px;
padding: 0 20px 20px;
}
.faq-answer p {
color: var(--gray-color);
line-height: 1.7;
}  .search-section {
background: linear-gradient(135deg, #1a56db 0%, #0e4da3 100%);
padding: 50px 0;
margin-bottom: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(26, 86, 219, 0.2);
}
.search-container {
max-width: 800px;
padding: 0 20px;
}
.search-title {
text-align: center;
color: white;
margin-bottom: 25px;
}
.search-title h3 {
font-size: 1.4rem;
margin-bottom: 10px;
font-weight: 600;
}
.search-title p {
opacity: 0.9;
font-size: 1.1rem;
}
.search-box-large {
display: flex;
background: white;
border-radius: 50px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.search-input {
flex-grow: 1;
padding: 18px 25px;
border: none;
font-size: 1.1rem;
outline: none;
}
.search-category {
padding: 0 20px;
border: none;
border-right: 1px solid #e5e7eb;
border-left: 1px solid #e5e7eb;
background: white;
font-size: 1rem;
outline: none;
cursor: pointer;
max-width: 180px;
}
.search-button {
padding: 0 30px;
background: var(--accent-color);
color: white;
border: none;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}
.search-button:hover {
background: #e04a17;
}
.search-examples {
text-align: center;
margin-top: 15px;
color: rgba(255, 255, 255, 0.8);
font-size: 0.9rem;
}
.search-examples span {
margin: 0 8px;
cursor: pointer;
transition: color 0.3s;
}
.search-examples span:hover {
color: white;
text-decoration: underline;
}
.search-examples a {
color: #f1f2f5;
text-decoration: none;
transition: color 0.3s ease;
}
.search-examples a:hover {
color: white;
text-decoration: underline;
} .hero {
background: linear-gradient(135deg, var(--primary-color) 0%, #2d78e6 100%);
color: white;
padding: 180px 0;
text-align: center;
}
.hero h1 {
font-size: 2.8rem;
margin-bottom: 20px;
line-height: 1.2;
}
.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
}
.hero-buttons {
display: flex;
justify-content: center;
gap: 15px;
}
.button-primary {
background: var(--accent-color);
color: white;
padding: 12px 25px;
border-radius: 5px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}
.button-primary:hover {
background: #e04815;
transform: translateY(-2px);
}
.button-secondary {
background: rgba(255, 255, 255, 0.2);
color: white;
padding: 12px 25px;
border-radius: 5px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}
.button-secondary:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
} .services {
padding: 80px 0;
background: white;
}
.section-title {
text-align: center;
margin-bottom: 50px;
}
.section-title h2 {
font-size: 2.2rem;
color: var(--dark);
margin-bottom: 15px;
position: relative;
display: inline-block;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: -8px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--primary-color);
border-radius: 3px;
}
.section-title p {
color: var(--gray-color);
max-width: 700px;
margin: 0 auto;
} .testimonials {
padding: 80px 0;
background: white;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.testimonial-card {
background: var(--light-color);
border-radius: 10px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
position: relative;
}
.testimonial-card::before {
content: """;
position: absolute;
top: 15px;
right: 20px;
font-size: 4rem;
color: rgba(26, 86, 219, 0.1);
font-family: Arial;
}
.testimonial-rating {
color: #f59e0b;
margin-bottom: 15px;
font-size: 1.2rem;
}
.testimonial-content {
color: #4b5563;
margin-bottom: 20px;
line-height: 1.7;
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
color: var(--gray-color);
font-weight: 600;
}
.author-info h4 {
font-size: 1.1rem;
margin-bottom: 5px;
}
.author-info p {
color: var(--gray-color);
font-size: 0.9rem;
} .knowledge-base {
padding: 80px 0;
background: #f8fafc;
position: relative;
overflow: hidden;
}
.knowledge-base::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: linear-gradient(90deg, var(--category-tech), var(--category-strategy), var(--category-law), var(--category-case));
}
.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.article-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: flex;
height: 100%;
flex-direction: column;
}
.article-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.article-image {
height: 180px;
overflow: hidden;
position: relative;
}
.article-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.article-card:hover .article-image img {
transform: scale(1.05);
}
.article-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}
.article-category {
display: inline-block;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 15px;
color: white;
}
.category-tech {
background: var(--category-tech);
}
.category-strategy {
background: var(--category-strategy);
}
.category-law {
background: var(--category-law);
}
.category-case {
background: var(--category-case);
}
.article-content h3 {
font-size: 1.3rem;
margin-bottom: 15px;
line-height: 1.4;
flex: 1;
}
.article-content h3 a {
color: var(--dark);
text-decoration: none;
transition: color 0.3s;
}
.article-content h3 a:hover {
color: var(--primary-color);
}
.article-excerpt {
color: var(--gray-color);
font-size: 0.95rem;
margin-bottom: 20px;
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.article-meta {
display: flex;
align-items: center;
justify-content: space-between;
color: var(--gray-color);
font-size: 0.85rem;
padding-top: 15px;
border-top: 1px solid #f1f5f9;
}
.meta-item {
display: flex;
align-items: center;
gap: 5px;
}
.read-progress {
height: 4px;
background: #e2e8f0;
border-radius: 2px;
overflow: hidden;
margin-top: 15px;
}
.progress-bar {
height: 100%;
border-radius: 2px;
}
.progress-tech {
background: var(--category-tech);
width: 68%;
}
.progress-strategy {
background: var(--category-strategy);
width: 45%;
}
.progress-law {
background: var(--category-law);
width: 72%;
}
.progress-case {
background: var(--category-case);
width: 53%;
}
.knowledge-more {
text-align: center;
}
.knowledge-more .button-secondary {
background: white;
color: var(--primary-color);
border: 1px solid var(--primary-color);
}
.knowledge-more .button-secondary:hover {
background: var(--primary-color);
color: white;
} .knowledge-base.simple-style {
background-color: #fafafa;
padding: 50px 0;
}
.section-header {
text-align: center;
margin-bottom: 40px;
}
.section-header h2 {
font-size: 28px;
color: #333;
margin-bottom: 10px;
}
.section-header p {
color: #666;
font-size: 16px;
}
.knowledge-filters {
display: flex;
justify-content: center;
margin-bottom: 30px;
gap: 10px;
}
.filter-btn {
background: transparent;
border: 1px solid #ddd;
padding: 8px 18px;
border-radius: 4px;
cursor: pointer;
transition: all 0.2s;
font-size: 14px;
}
.filter-btn.active {
background-color: #0066cc;
color: #fff;
border-color: #0066cc;
}
.filter-btn:hover:not(.active) {
border-color: #0066cc;
color: #0066cc;
}
.articles-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.article-item {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.article-item .article-category {
display: inline-block;
font-size: 12px;
color: #0066cc;
background: #f0f7ff;
padding: 3px 10px;
border-radius: 4px;
margin-bottom: 10px;
}
.article-item .article-title {
margin: 0 0 12px;
font-size: 18px;
}
.article-item .article-title a {
color: #333;
text-decoration: none;
}
.article-item .article-title a:hover {
color: #0066cc;
}
.article-item .article-summary {
color: #666;
font-size: 14px;
line-height: 1.6;
margin-bottom: 15px;
}
.article-item .article-meta {
display: flex;
justify-content: space-between;
font-size: 12px;
color: #999;
border-top: 1px solid #f5f5f5;
padding-top: 10px;
}
.view-more {
text-align: center;
margin-top: 35px;
}
.btn-view-more {
display: inline-block;
padding: 10px 20px;
background-color: #fff;
color: #0066cc;
border: 1px solid #0066cc;
border-radius: 4px;
text-decoration: none;
transition: all 0.2s;
}
.btn-view-more:hover {
background-color: #0066cc;
color: #fff;
} .cta-section {
background: linear-gradient(135deg, var(--secondary-color) 0%, #16a34a 100%);
color: white;
padding: 80px 0;
text-align: center;
}
.cta-section h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}
.cta-section p {
max-width: 700px;
margin: 0 auto 30px;
font-size: 1.1rem;
} footer {
background: var(--dark);
color: white;
padding: 60px 0 30px;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-column h3 {
font-size: 1.2rem;
margin-bottom: 20px;
color: #f3f4f6;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: #d1d5db;
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: white;
}
.contact-info {
color: #d1d5db;
margin-bottom: 8px;
}
.copyright {
text-align: center;
padding-top: 30px;
border-top: 1px solid #374151;
color: #9ca3af;
font-size: 0.9rem;
} .search-box-large form {
margin: 0;
padding: 0;
display: flex;
width: 100%;
} form {
margin: 0;
padding: 0;
border: none;
}  @media (min-width: 992px) {
.main-nav {
display: block;
}
.menu-toggle {
display: none;
}
}
@media (max-width: 991px) {
.main-nav.active {
display: block;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 15px 0;
}
.nav-list {
flex-direction: column;
gap: 0;
width: 100%;
}
.nav-item {
width: 95%;
}
.nav-link {
display: block;
padding: 12px 20px;
border-bottom: 1px solid var(--light-gray);
width: 100%;
}
.nav-link.active::after {
display: none;
}
.dropdown-menu {
position: static;
width: 100%;
box-shadow: none;
background-color: #f9f9f9;
border-radius: 0;
padding: 0;
max-height: 0;
overflow: hidden;
opacity: 1;
visibility: visible;
transform: none;
transition: max-height 0.3s ease;
}
.dropdown.active .dropdown-menu {
max-height: 500px;
}
.dropdown-link {
padding: 12px 35px;
border-bottom: 1px solid #eee;
}
.nav-item.cta-item .nav-link {
background-color: var(--secondary);
color: white;
text-align: center;
border-radius: 8px;
margin: 10px 0;
border-bottom: none;
}
.category-header h1 {
font-size: 2rem;
}
.templates-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
} .knowledge-filters {
flex-wrap: wrap;
}
.articles-list {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.2rem;
}
.hero-buttons {
flex-direction: column;
align-items: center;
}
.services-grid, .templates-grid, .testimonials-grid, .articles-grid {
grid-template-columns: 1fr;
}
.template-actions {
flex-direction: column;
gap: 10px;
}
.search-box-large {
flex-direction: column;
border-radius: 12px;
}
.search-input, .search-category, .search-button {
border-radius: 0;
border: none;
border-bottom: 1px solid #e5e7eb;
}
.search-button {
border-bottom: none;
padding: 15px;
} .category-search .search-box-large {
flex-direction: column;
border-radius: 8px;
}
.category-search .search-input,
.category-search .search-category,
.category-search .search-button {
width: 100%;
max-width: none;
border: none;
border-bottom: 1px solid #f1f5f9;
border-radius: 0;
}
.category-search .search-button {
border-bottom: none;
padding: 15px;
}
.guides-container {
flex-direction: column;
}
.guide-item {
justify-content: center;
width: 100%;
} .lanmu-articles-list {
display: block!important;
}
.lanmu-article-card {
display: block!important;
padding-left: unset!important;
margin-bottom: 15px;
}
.sidebar {
display: block!important;
}
.content-area {
display: block!important;
grid-template-columns: 1fr;
}
.lanmu-article-image {
width: 100%!important;
}
.search-input {
padding: 12px 15px 12px 40px;
font-size: 0.8rem;
}
.search-submit {
padding: 0 10px;
font-size: 0.8rem;
} .content-wrapper {
flex-direction: column;
}
.wenzhang-article-content, .sidebar {
width: 100%!important;
}
.article-card {
padding: 16px;
}
.comment-header {
display: block;
}
.comments-meta {
display: block;
}
.comment-form-fields {
flex-direction: column;
gap: 8px;
}
.form-submit {
margin: 20px 0;
} .search .search-results-grid {
grid-template-columns: 1fr;
}
.search .filter-label {
display: block;
margin-bottom: 10px;
}
.search .filter-option {
margin-bottom: 10px;
}
}
.form-submit {
margin: 20px 0;
}
@media (max-width: 480px) {
.mobile-dropdown-menu a {
padding: 10px 30px;
font-size: 0.9rem;
}
.mobile-menu {
max-height: 80vh;
overflow-y: auto;
}
.templates-grid {
grid-template-columns: 1fr;
}
.pagination {
flex-wrap: wrap;
padding: 0 10px;
}
.share-buttons {
gap: 8px;
}
.share-btn {
padding: 6px 12px;
font-size: 13px;
}
}
@media (max-width: 768px) {
.wp-toc-container {
padding: 1rem;
}
.wp-toc-title {
font-size: 1.1rem;
}
} .main-content {
padding-top: 80px;
padding-bottom: 60px;
min-height: 60vh;
} .page-header {
margin-bottom: 40px;
text-align: center;
animation: fadeIn 0.6s ease forwards;
}
.page-title {
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
color: var(--dark-color);
}
.page-description {
font-size: 1.2rem;
color: var(--gray-color);
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
} .page-content {
background-color: white;
border-radius: 12px;
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
padding: 40px;
margin-bottom: 40px;
animation: fadeIn 0.6s ease forwards;
animation-delay: 0.1s;
} .page-article {
line-height: 1.8;
}
.page-article h2 {
font-size: 1.5rem;
font-weight: 600;
margin: 32px 0 16px;
padding-bottom: 8px;
border-bottom: 1px solid #F2F4F7;
color: var(--dark-color);
}
.page-article h3 {
font-size: 1.3rem;
font-weight: 600;
margin: 24px 0 12px;
color: var(--dark-color);
}
.page-article h4 {
font-size: 1.1rem;
font-weight: 600;
margin: 20px 0 10px;
color: var(--dark-color);
}
.page-article p {
margin-bottom: 16px;
color: #4B5563;
}
.page-article ul,
.page-article ol {
margin: 0 0 20px 20px;
}
.page-article li {
margin-bottom: 8px;
color: #4B5563;
}
.page-article blockquote {
background-color: rgba(22, 93, 255, 0.05);
border-left: 4px solid var(--primary-color);
padding: 20px;
border-radius: 0 8px 8px 0;
margin: 24px 0;
font-style: italic;
}
.page-article blockquote p {
margin-bottom: 0;
color: #1D2939;
}
.page-article img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 20px 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.page-article table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.page-article table th {
background-color: var(--primary-color);
color: white;
font-weight: 600;
text-align: left;
}
.page-article table th,
.page-article table td {
padding: 12px 16px;
border: 1px solid #E5E7EB;
}
.page-article table tr:nth-child(even) {
background-color: #F9FAFB;
} .page-links {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #F2F4F7;
text-align: center;
}
.page-links .post-page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 6px;
background: white;
color: var(--dark-color);
text-decoration: none;
border: 1px solid var(--light-gray);
margin: 0 4px;
font-weight: 500;
transition: all 0.3s;
}
.page-links .post-page-numbers:hover {
background: var(--light-color);
border-color: var(--primary-color);
color: var(--primary-color);
}
.page-links .post-page-numbers.current {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
} .no-content {
text-align: center;
padding: 60px 20px;
background-color: rgba(22, 93, 255, 0.05);
border-radius: 8px;
color: var(--gray-color);
}
.no-content p {
font-size: 1.1rem;
margin-bottom: 0;
} .page-featured-image {
width: 100%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
margin-bottom: 30px;
}
.page-featured-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}
.page-featured-image:hover img {
transform: scale(1.02);
} .page-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
margin-bottom: 40px;
}
.page-main-content {
animation: fadeIn 0.6s ease forwards;
}
.page-sidebar {
animation: fadeIn 0.6s ease forwards;
animation-delay: 0.2s;
} .page-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.widget-card {
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}
.widget-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.widget-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 20px;
color: var(--dark-color);
padding-bottom: 10px;
border-bottom: 1px solid #d9dde7;
} .contact-widget .contact-info {
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
color: var(--gray-color);
}
.contact-widget .contact-info:last-child {
margin-bottom: 0;
} .services-widget .service-item {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #F2F4F7;
}
.services-widget .service-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.services-widget .service-item h4 {
margin-bottom: 8px;
font-size: 1.1rem;
}
.services-widget .service-item p {
margin-bottom: 0;
font-size: 0.9rem;
color: var(--gray-color);
} @keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 768px) {
.main-content {
padding-top: 100px;
padding-bottom: 40px;
}
.page-content {
padding: 20px;
margin-bottom: 20px;
}
.page-title {
font-size: 1.5rem;
}
.page-description {
font-size: 1rem;
}
.page-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.page-widgets {
grid-template-columns: 1fr;
gap: 20px;
}
.widget-card {
padding: 20px;
}
.page-article h2 {
font-size: 1.3rem;
}
.page-article h3 {
font-size: 1.2rem;
}
.page-article table {
font-size: 0.9rem;
}
.page-article table th,
.page-article table td {
padding: 8px 12px;
}
}
@media (max-width: 480px) {
.page-content {
padding: 16px;
}
.page-title {
font-size: 1.3rem;
}
.widget-card {
padding: 16px;
}
.page-links .post-page-numbers {
width: 35px;
height: 35px;
font-size: 0.9rem;
}
} ol {
display: block;
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
unicode-bidi: isolate;
padding-inline-start: revert;
}
table {
width: 100%; border-collapse: collapse; }
th, td {
border: 1px solid #ddd; padding: 10px; text-align: left; vertical-align: top; white-space: normal; word-wrap: break-word; }
th {
background-color: #f5f5f5; }
thead {
background-color: #333;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
}
tbody tr:nth-child(odd) {
background-color: #f9f9f9;
}
tbody tr:nth-child(even) {
background-color: #ffffff;
}
caption {
caption-side: top;
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
} @media (max-width: 480px) {
th, td {
padding: 6px;
font-size: 14px;
}
} .error-404 {
text-align: center;
padding: 40px 0 80px;
}
.error-icon {
margin-bottom: 30px;
}
.error-suggestions {
max-width: 800px;
margin: 0 auto;
}
.error-suggestions h2 {
font-size: 1.5rem;
margin-bottom: 20px;
color: var(--dark-color);
}
.error-suggestions h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--primary-color);
}
.pages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 30px 0 40px;
}
.page-item {
background: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.page-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.page-icon {
font-size: 2rem;
margin-bottom: 10px;
}
.page-item h4 {
font-size: 1.1rem;
margin-bottom: 8px;
color: var(--dark-color);
}
.page-item p {
color: var(--gray-color);
font-size: 0.9rem;
margin-bottom: 0;
}
.page-item a {
text-decoration: none;
color: inherit;
display: block;
}
.back-home {
margin-top: 30px;
}
.back-home .button-primary {
display: inline-block;
padding: 12px 30px;
background-color: var(--primary-color);
color: white;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.back-home .button-primary:hover {
background-color: #1544b1;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
} @media (max-width: 768px) {
.pages-grid {
grid-template-columns: 1fr;
}
.error-404 {
padding: 20px 0 40px;
}
}