* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .navbar {
background-color: #1a1a1a;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
color: white;
text-decoration: none;
font-size: 1.5rem;
font-weight: bold;
}
.nav-links a {
color: white;
text-decoration: none;
margin-left: 2rem;
transition: color 0.3s;
}
.nav-links a:hover {
color: #4a9eff;
} .mobile-menu-btn {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}
.mobile-menu {
display: none;
position: fixed;
top: 60px;
left: 0;
right: 0;
background-color: #1a1a1a;
padding: 1rem;
z-index: 999;
}
.mobile-menu a {
display: block;
color: white;
text-decoration: none;
padding: 0.8rem 1rem;
border-bottom: 1px solid #333;
}
.mobile-menu a i {
margin-right: 0.5rem;
} .mobile-menu.active {
display: block;
} @media (max-width: 768px) {
.nav-links {
display: none;
}
.mobile-menu-btn {
display: block;
}
.mobile-menu {
display: none; flex-direction: column;
gap: 10px;
}
.mobile-menu.active {
display: flex;
}
} .hero {
background-color: #1a1a1a;
color: white;
padding: 8rem 0;
text-align: center;
margin-top: 30px;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.25rem;
color: #a0a0a0;
margin-bottom: 2rem;
}
.cta-button {
display: inline-block;
background-color: #4a9eff;
color: white;
padding: 1rem 2rem;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #3182ce;
} .features {
padding: 4rem 0;
background-color: #f5f5f5;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background: #fff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
text-align: center;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-icon {
font-size: 2.5rem;
color: #2563eb;
margin-bottom: 1.5rem;
}
.feature-link {
display: inline-flex;
align-items: center;
color: #2563eb;
text-decoration: none;
margin-top: 1rem;
font-weight: 500;
gap: 0.5rem;
}
.feature-link:hover {
text-decoration: underline;
} @media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.feature-grid {
grid-template-columns: 1fr;
}
} .section-title {
text-align: center;
font-size: 2rem;
margin-bottom: 3rem;
color: #1a1a1a;
} .about {
padding: 4rem 0;
background-color: white;
}
.about-content {
display: flex;
gap: 2rem;
align-items: center;
}
.about-text {
flex: 1;
}
.about-image {
flex: 1;
}
.about-image img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.about-features {
list-style: none;
padding: 0;
margin-top: 1.5rem;
}
.about-features li {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1rem;
}
.about-features i {
color: #2563eb;
} @media (max-width: 768px) {
.about-content {
flex-direction: column;
}
.about-image {
order: -1; margin-bottom: 1.5rem;
}
.about-text {
text-align: center;
}
.about-features li {
justify-content: center;
}
} .blog {
padding: 4rem 0;
background-color: #f5f5f5;
}
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.blog-card {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blog-image img {
width: 100%;
height: 200px;
object-fit: cover;
}
.blog-content {
padding: 1.5rem;
}
.blog-meta {
color: #666;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.blog-meta span {
margin-right: 1rem;
}
.blog-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
margin-bottom: 0.5rem;
padding-bottom: 0.25rem;
}
.read-count {
color: #666;
font-size: 0.9rem;
}
.read-count i {
margin-right: 0.3rem;
}
.read-more {
color: #4a9eff;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
} .faq {
padding: 4rem 0;
background-color: white;
}
.faq-item {
border-bottom: 1px solid #eee;
margin-bottom: 1rem;
}
.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
cursor: pointer;
}
.faq-answer {
padding: 0 0 1rem;
display: none;
}
.faq-question.active + .faq-answer {
display: block;
} @media (max-width: 768px) {
.mobile-menu-btn {
display: block;
}
.nav-links {
display: none;
}
.mobile-menu.active {
display: block;
}
.about-content {
grid-template-columns: 1fr;
}
.about-image {
order: -1;
}
.blog-grid {
grid-template-columns: 1fr;
}
.blog-footer {
margin-bottom: 1rem; padding-bottom: 0.5rem; }
} .footer {
background-color: #1a1a1a;
color: white;
padding: 4rem 0 1rem;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.footer-section h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.8rem;
}
.footer-section a {
color: #a0a0a0;
text-decoration: none;
transition: color 0.3s;
}
.footer-section a:hover {
color: #4a9eff;
}
.social-links {
margin-top: 1.5rem;
}
.social-links a {
color: white;
font-size: 1.5rem;
margin-right: 1rem;
}
.contact-info li {
color: #a0a0a0;
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #333;
color: #a0a0a0;
} .page-header {
background-color: #1a1a1a;
color: white;
padding: 6rem 0 3rem;
margin-top: 60px;
text-align: center;
}
.page-header h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.page-header p {
color: #a0a0a0;
font-size: 1.2rem;
} .blog-list {
padding: 4rem 0;
} .blog-filters {
margin-bottom: 3rem;
}
.search-box {
position: relative;
max-width: 500px;
margin: 0 auto 2rem;
}
.search-box input.search-field {
width: 100%;
padding: 1rem;
padding-right: 3rem;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}
.search-box .search-submit {
position: absolute;
right: 1rem;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
cursor: pointer;
color: #666;
}
.search-box .search-submit:hover {
color: #4a9eff;
}
.category-filters {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
.category-filters .filter-btn {
padding: 0.5rem 1.5rem;
border: 1px solid #ddd;
border-radius: 25px;
background: none;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
color: inherit;
}
.category-filters .filter-btn.active {
background-color: #4a9eff;
color: white;
border-color: #4a9eff;
} .pagination {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-top: 3rem;
width: 100%;
clear: both;
}
.page-numbers {
display: flex;
justify-content: center;
gap: 0.5rem;
flex-wrap: wrap;
}
.page-numbers span,
.page-numbers a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: 1px solid #ddd;
border-radius: 5px;
text-decoration: none;
color: #666;
transition: all 0.3s;
line-height: 1;
}
.page-numbers .current {
background-color: #4a9eff;
color: white;
border: 1px solid #4a9eff;
}
.page-numbers i {
font-size: 16px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
}
.page-numbers a:hover {
background-color: #4a9eff;
color: white;
border-color: #4a9eff;
} .blog-detail {
padding: 6rem 0 4rem;
padding-top: 2rem; 
}
.blog-header {
margin-bottom: 2rem;
}
.blog-header h1 {
margin-bottom: 1rem;
font-size: 2rem;
line-height: 1.2;
}
.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1.5rem;
color: #64748b;
}
.blog-meta span {
display: flex;
align-items: center;
gap: 0.5rem;
}
.blog-cover {
margin-top: 1.5rem;
}
.blog-cover img {
width: 100%;
height: auto;
border-radius: 8px;
}
.blog-content {
max-width: 800px;
margin: 0 auto;
line-height: 1.8;
}
.blog-content h2 {
margin: 2rem 0 1rem;
font-size: 1.8rem;
}
.blog-content p {
margin-bottom: 1.5rem;
}
.blog-content ul {
margin: 1rem 0 1.5rem 2rem;
}
.code-block {
background: #1a1a1a;
color: #fff;
padding: 1.5rem;
border-radius: 8px;
margin: 1.5rem 0;
overflow-x: auto;
}
.code-block pre {
margin: 0;
}
.blog-tags {
margin: 3rem 0;
}
.blog-tags a {
display: inline-block;
padding: 0.3rem 1rem;
margin: 0 0.5rem;
background: #f5f5f5;
border-radius: 20px;
color: #666;
text-decoration: none;
transition: all 0.3s;
}
.blog-tags a:hover {
background: #4a9eff;
color: white;
}
.blog-share {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 3rem;
}
.blog-share a {
color: #666;
font-size: 1.5rem;
transition: color 0.3s;
}
.blog-share a:hover {
color: #4a9eff;
}
.post-navigation {
display: flex;
justify-content: space-between;
margin: 2rem 0;
padding: 1rem 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.prev-post, .next-post {
flex: 1;
}
.next-post {
text-align: right;
}
.prev-post a, .next-post a {
display: flex;
align-items: center;
gap: 1rem;
text-decoration: none;
color: inherit;
}
.next-post a {
justify-content: flex-end;
}
.nav-content {
display: flex;
flex-direction: column;
}
.nav-label {
font-size: 0.9rem;
color: #666;
margin-bottom: 0.25rem;
}
.nav-title {
font-weight: 500;
}
.prev-post a:hover, .next-post a:hover {
color: #007bff;
}
@media (max-width: 768px) {
.nav-title {
font-size: 0.9rem;
} .prev-post, .next-post {
max-width: 45%;
}
.blog-filters {
flex-direction: column;
align-items: flex-start;
}
.category-filters {
flex-wrap: wrap;
gap: 0.5rem;
}
}
.related-posts {
margin-top: 4rem;
padding-top: 3rem;
}
.related-posts h3 {
font-size: 1.8rem;
margin-bottom: 2rem;
} @media (max-width: 768px) {
.blog-header h1 {
font-size: 2rem;
}
.blog-content {
padding: 0 1rem;
}
} .services-list {
padding: 4rem 0;
background-color: #f5f5f5;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s;
}
.service-card:hover {
transform: translateY(-5px);
}
.service-icon {
font-size: 3rem;
color: #4a9eff;
margin-bottom: 1.5rem;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #1a1a1a;
}
.service-features {
list-style: none;
margin: 1.5rem 0;
text-align: left;
}
.service-features li {
margin-bottom: 0.5rem;
color: #666;
}
.service-features i {
color: #4a9eff;
margin-right: 0.5rem;
}
.service-btn {
display: inline-block;
padding: 0.8rem 2rem;
background-color: #4a9eff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.service-btn:hover {
background-color: #3182ce;
} .service-advantages {
padding: 4rem 0;
background-color: white;
}
.advantages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.advantage-item {
text-align: center;
padding: 2rem;
}
.advantage-item i {
font-size: 2.5rem;
color: #4a9eff;
margin-bottom: 1rem;
}
.advantage-item h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: #1a1a1a;
}
.advantage-item p {
color: #666;
} @media (max-width: 768px) {
.services-grid {
grid-template-columns: 1fr;
}
.advantages-grid {
grid-template-columns: 1fr;
}
} .service-detail {
padding: 4rem 0;
background-color: #f5f5f5;
}
.service-intro {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 3rem;
}
.service-content {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.service-content h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: #1a1a1a;
}
.service-content h3 {
font-size: 1.5rem;
margin: 2rem 0 1rem;
color: #1a1a1a;
}
.service-list {
list-style: none;
margin: 1rem 0;
}
.service-list li {
display: flex;
align-items: center;
margin-bottom: 1rem;
color: #666;
}
.service-list i {
color: #4a9eff;
margin-right: 0.5rem;
} .process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.step {
text-align: center;
}
.step-icon {
width: 40px;
height: 40px;
background: #4a9eff;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-weight: bold;
} .service-pricing {
display: flex;
flex-direction: column;
gap: 1rem;
}
.pricing-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
}
.pricing-card.featured {
border: 2px solid #4a9eff;
transform: scale(1.05);
}
.price {
font-size: 2rem;
font-weight: bold;
color: #4a9eff;
margin: 1rem 0;
}
.pricing-btn {
display: inline-block;
padding: 0.8rem 2rem;
background-color: #4a9eff;
color: white;
text-decoration: none;
border-radius: 5px;
margin-top: 1rem;
transition: background-color 0.3s;
} .contact-section {
padding: 4rem 0;
background-color: white;
}
.contact-form {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #1a1a1a;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}
.submit-btn {
display: block;
width: 100%;
padding: 1rem;
background-color: #4a9eff;
color: white;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s;
}
.submit-btn:hover {
background-color: #3182ce;
} @media (max-width: 768px) {
.service-intro {
grid-template-columns: 1fr;
}
.pricing-card.featured {
transform: none;
}
} .about-intro {
padding: 4rem 0;
background-color: white;
}
.company-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
text-align: center;
}
.stat-item {
padding: 2rem;
background: #f5f5f5;
border-radius: 8px;
}
.stat-number {
display: block;
font-size: 2.5rem;
font-weight: bold;
color: #4a9eff;
margin-bottom: 0.5rem;
}
.stat-label {
color: #666;
} .team-section {
padding: 4rem 0;
background-color: #f5f5f5;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.team-member {
background: white;
border-radius: 8px;
overflow: hidden;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.member-photo img {
width: 100%;
height: 300px;
object-fit: cover;
}
.team-member h3 {
margin: 1rem 0 0.5rem;
color: #1a1a1a;
}
.member-title {
color: #4a9eff;
margin-bottom: 0.5rem;
}
.member-desc {
color: #666;
padding: 0 1rem;
margin-bottom: 1rem;
}
.member-social {
padding: 1rem;
}
.member-social a {
color: #666;
margin: 0 0.5rem;
font-size: 1.2rem;
} .history-section {
padding: 4rem 0;
background-color: white;
}
.timeline {
position: relative;
max-width: 800px;
margin: 3rem auto 0;
padding: 2rem 0;
}
.timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 2px;
background: #4a9eff;
transform: translateX(-50%);
}
.timeline-item {
display: flex;
justify-content: center;
padding: 2rem 0;
}
.timeline-date {
flex: 1;
text-align: right;
padding-right: 3rem;
font-weight: bold;
color: #4a9eff;
}
.timeline-content {
flex: 1;
padding-left: 3rem;
position: relative;
}
.timeline-content::before {
content: '';
position: absolute;
left: -8px;
top: 0;
width: 16px;
height: 16px;
background: #4a9eff;
border-radius: 50%;
} .partners-section {
padding: 4rem 0;
background-color: #f5f5f5;
}
.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 2rem;
margin-top: 3rem;
align-items: center;
}
.partner-logo img {
width: 100%;
height: auto;
filter: grayscale(100%);
transition: filter 0.3s;
}
.partner-logo img:hover {
filter: grayscale(0%);
} @media (max-width: 768px) {
.company-stats {
grid-template-columns: 1fr;
}
.timeline::before {
left: 0;
}
.timeline-item {
flex-direction: column;
}
.timeline-date {
text-align: left;
padding-right: 0;
padding-left: 2rem;
}
.timeline-content {
padding-left: 2rem;
}
}
.breadcrumb {
padding: 0.75rem 0;
background-color: #f8fafc;
border-bottom: 1px solid #e2e8f0;
margin-top: 70px;
margin-bottom: 0;
}
.breadcrumb-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.breadcrumb-list li {
display: flex;
align-items: center;
}
.breadcrumb-list li:not(:last-child)::after {
content: "/";
margin-left: 0.5rem;
color: #94a3b8;
}
.breadcrumb-list a {
color: #64748b;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.25rem;
}
.breadcrumb-list a:hover {
color: #2563eb;
}
.breadcrumb-list .active {
color: #0f172a;
font-weight: 500;
} @media (max-width: 640px) {
.breadcrumb-list {
font-size: 0.875rem;
}
} .category-header {
padding: 3rem 0;
background: #f8f9fa;
border-bottom: 1px solid #eee;
}
.category-title {
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #2c3e50;
}
.category-description {
font-size: 1.1rem;
color: #6c757d;
max-width: 600px;
line-height: 1.6;
} @media (max-width: 768px) {
.category-header {
padding: 2rem 0;
}
.category-title {
font-size: 2rem;
}
.category-description {
font-size: 1rem;
}
} .filter-toolbar {
background-color: white;
padding: 1rem 0;
border-bottom: 1px solid #e2e8f0;
margin-bottom: 2rem;
}
.filter-toolbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.view-switcher {
display: flex;
gap: 0.5rem;
}
.view-btn {
background: none;
border: 1px solid #e2e8f0;
padding: 0.5rem;
border-radius: 0.375rem;
cursor: pointer;
color: #64748b;
}
.view-btn.active {
background-color: #2563eb;
color: white;
border-color: #2563eb;
}
.sort-select {
padding: 0.5rem 2rem 0.5rem 1rem;
border: 1px solid #e2e8f0;
border-radius: 0.375rem;
color: #64748b;
background-color: white;
} .article-card {
background: white;
border-radius: 0.5rem;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.article-card:hover {
transform: translateY(-4px);
}
.article-image {
position: relative;
width: 100%;
height: 200px;
overflow: hidden;
}
.article-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.article-category {
position: absolute;
bottom: 10px;
left: 10px;
z-index: 2;
}
.article-category span {
background: rgba(74, 158, 255, 0.9);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 14px;
}
.article-content {
padding: 1.5rem;
}
.article-meta {
display: flex;
gap: 1rem;
color: #64748b;
font-size: 0.875rem;
margin-bottom: 1rem;
}
.article-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid #e2e8f0;
}
.article-tags {
display: flex;
gap: 0.5rem;
}
.article-tags a {
color: #64748b;
font-size: 0.875rem;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.25rem;
} .related-categories {
padding: 4rem 0;
background-color: #f8fafc;
}
.category-tags {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 2rem;
}
.category-tag {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background-color: white;
border: 1px solid #e2e8f0;
border-radius: 0.375rem;
color: #64748b;
text-decoration: none;
transition: all 0.3s ease;
}
.category-tag:hover {
border-color: #2563eb;
color: #2563eb;
}
.tag-count {
background-color: #f1f5f9;
padding: 0.125rem 0.5rem;
border-radius: 1rem;
font-size: 0.875rem;
} @media (max-width: 768px) {
.filter-toolbar .container {
flex-direction: column;
gap: 1rem;
}
.category-meta {
flex-direction: column;
gap: 0.5rem;
align-items: center;
}
} .content-wrapper {
display: grid;
grid-template-columns: 1fr 300px;
gap: 2rem;
padding: 2rem 0;
} .main-content {
min-width: 0; } .article-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
} .sidebar {
position: sticky;
top: 80px; height: fit-content;
} .widget_block {
background: white;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
margin-bottom: 1.5rem;
}
.widget_block .widget-title {
font-size: 1.2rem;
color: #1a1a1a;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #f1f5f9;
} .widget_block .stats-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
color: #64748b;
}
.widget_block .stats-item i {
font-size: 1.2rem;
color: #4a9eff;
} .widget_block .category-list {
list-style: none;
margin: 0;
padding: 0;
}
.widget_block .category-list li {
margin-bottom: 0.5rem;
}
.widget_block .category-list a {
display: flex;
align-items: center;
padding: 0.5rem;
color: #64748b;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s ease;
}
.widget_block .category-list a:hover {
background-color: #f1f5f9;
color: #2563eb;
}
.widget_block .category-list i {
margin-right: 0.75rem;
}
.widget_block .category-name {
flex: 1;
}
.widget_block .category-count {
background-color: #f1f5f9;
padding: 0.25rem 0.5rem;
border-radius: 999px;
font-size: 0.875rem;
} .category-header {
background-color: white;
padding: 2rem 0;
border-bottom: 1px solid #e2e8f0;
margin-bottom: 0;
}
.category-header h1 {
display: flex;
align-items: center;
gap: 0.75rem;
color: #1a1a1a;
font-size: 1.875rem;
margin-bottom: 0.75rem;
}
.category-header i {
color: #4a9eff;
}
.category-description {
color: #64748b;
font-size: 1.1rem;
} @media (max-width: 1024px) {
.content-wrapper {
grid-template-columns: 1fr;
}
.sidebar {
position: static;
margin-top: 2rem;
}
} .floating-btn {
position: fixed;
display: flex;
align-items: center;
gap: 8px;
background-color: #4a9eff;
color: white;
padding: 12px 24px;
border-radius: 50px;
text-decoration: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
transition: all 0.3s ease;
z-index: 1000;
}
.floating-btn i {
font-size: 1.2rem;
}
.floating-btn:hover {
background-color: #2563eb;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
} @media (min-width: 769px) {
.floating-btn {
right: 40px;
bottom: 40px;
}
} @media (max-width: 768px) {
.floating-btn {
left: 20px;
right: 20px;
bottom: 20px;
justify-content: center;
}
} @keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.floating-btn {
animation: bounce 2s infinite;
} .floating-btn:hover {
animation: none;
}