/* 全局样式 */
:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --border-color: #e2e8f0;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark-color);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 5rem 0;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #059669;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-text {
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
}

.btn-text:hover {
    color: #1d4ed8;
}

/* 导航栏 */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    transition: var(--transition);
    padding-bottom: 5px;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active:after,
nav ul li a:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.hero-buttons .btn {
    margin-right: 1rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* 特性部分 */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* 服务概览 */
.services-overview {
    background-color: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card .btn {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.service-card .btn {
    margin: 0 1.5rem 1.5rem;
    display: inline-block;
}

/* 案例研究 */
.case-studies {
    background-color: white;
}

.case-studies-slider {
    position: relative;
}

.case-study {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.case-study-image {
    flex: 1;
}

.case-study-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.case-study-content {
    flex: 1;
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.case-study-result {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slider-controls button {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--primary-color);
    color: white;
}

/* 客户评价 */
.testimonials {
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -20px;
    color: #e2e8f0;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--gray-color);
}

/* 合作伙伴 */
.partners {
    background-color: white;
}

.partners-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logo img {
    height: 60px;
    margin: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partners-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* 博客预览 */
.blog-preview {
    background-color: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* 联系CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: white;
    color: var(--primary-color);
}

.cta-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* 页脚 */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.newsletter h4 {
    margin-bottom: 1rem;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background: #1d4ed8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #cbd5e1;
}

.footer-bottom-links a {
    color: #cbd5e1;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .case-study {
        flex-direction: column;
    }

    .case-study-image,
    .case-study-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 1rem;
    }

    .footer-bottom-links a {
        margin: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .feature-card,
    .service-card,
    .testimonial-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }

    .partners-logo img {
        height: 40px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.service-card,
.testimonial-card,
.blog-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.feature-card:nth-child(2),
.service-card:nth-child(2),
.testimonial-card:nth-child(2),
.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3),
.service-card:nth-child(3),
.testimonial-card:nth-child(3),
.blog-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* 页面标题样式 */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 关于我们页面样式 */
.about-intro .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 使命愿景部分 */
.mission-vision {
    background-color: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* 团队部分 */
.our-team {
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.member-image {
    flex: 0 0 40%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-social {
    margin-top: 1.5rem;
}

.member-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* 公司历程 */
.company-history {
    background-color: #f8fafc;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-date {
    position: absolute;
    width: 120px;
    text-align: right;
    left: calc(50% - 150px);
    top: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 1.5rem,1.5rem,1.5rem,1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-date {
    left: auto;
    right: calc(50% - 150px);
    text-align: left;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    padding: 15px 20px 0 20px;
}

.timeline-content p {
    margin-bottom: 0.5rem;
    padding: 15px 20px 15px 20px;
}

/* 办公环境 */
.our-offices {
    background-color: white;
}

.office-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

/* 加入我们 */
.join-us {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
    color: white;
    text-align: center;
}

.join-us-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.join-us-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.join-us-content .btn {
    background: white;
    color: var(--secondary-color);
}

.join-us-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .about-intro .container {
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member {
        flex-direction: column;
    }

    .member-image {
        flex: 0 0 auto;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-date {
        left: 40px;
        width: auto;
        text-align: left;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 100px;
        margin-right: 0;
    }

    .timeline-item:nth-child(even) .timeline-date {
        left: 40px;
        right: auto;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* 服务页面样式 */
.services-intro {
    background-color: white;
    padding-bottom: 2rem;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.services-intro-content p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-detail {
    padding: 5rem 0;
}

.service-detail .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-detail.alt-bg {
    background-color: #f8fafc;
}

.service-content,
.service-image {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* 服务流程 */
.service-process {
    background-color: white;
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: var(--border-color);
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-step p {
    color: var(--gray-color);
}

/* 行业解决方案 */
.industry-solutions {
    background-color: #f8fafc;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-image {
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 1.5rem;
}

.solution-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.solution-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

/* 常见问题 */
.faq {
    background-color: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--gray-color);
}

.faq-item.active .faq-question {
    background-color: #f8fafc;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .service-detail .container {
        flex-direction: column;
    }

    .service-detail:nth-child(even) .container {
        flex-direction: column;
    }

    .service-image {
        order: -1;
    }

    .process-step:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* 产品页面样式 */
.products-intro {
    background-color: white;
    padding-bottom: 2rem;
}

.products-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.products-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.products-intro-content p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.product-detail {
    padding: 5rem 0;
}

.product-detail .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.product-detail.alt-bg {
    background-color: #f8fafc;
}

.product-content,
.product-image {
    flex: 1;
}

.product-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.product-content p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* 产品优势 */
.product-advantages {
    background-color: white;
    padding: 5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f9ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.advantage-card p {
    color: var(--gray-color);
}

/* 客户案例 */
.product-cases {
    background-color: #f8fafc;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.case-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.case-tag {
    display: inline-block;
    background-color: #f0f9ff;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.cases-cta {
    text-align: center;
    margin-top: 3rem;
}

/* 产品价格 */
.product-pricing {
    background-color: white;
}

.pricing-subtitle {
    text-align: center;
    color: var(--gray-color);
    max-width: 700px;
    margin: -2rem auto 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing-price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--dark-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--gray-color);
}

.price-custom {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-header p {
    color: var(--gray-color);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.pricing-features li.not-included {
    color: var(--gray-color);
}

.pricing-features li.not-included i {
    color: #cbd5e1;
}

.pricing-action {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .product-detail .container {
        flex-direction: column;
    }

    .product-detail:nth-child(even) .container {
        flex-direction: column;
    }

    .product-image {
        order: -1;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    .advantages-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* 案例研究页面样式 */
.case-filter {
    background-color: white;
    padding: 1rem 0 2rem;
}

.filter-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.case-studies {
    background-color: var(--light-color);
    padding-top: 2rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    height: 220px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 1.5rem;
}

.case-tags {
    margin-bottom: 1rem;
}

.case-tag {
    display: inline-block;
    background-color: #f0f9ff;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.case-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.case-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

/* 案例详情页样式 */
.case-detail-header {
    background-color: white;
    padding: 3rem 0;
}

.case-detail-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.case-detail-tags {
    margin-bottom: 1.5rem;
}

.case-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.case-detail-header p {
    color: var(--gray-color);
    max-width: 700px;
    margin-bottom: 2rem;
}

.case-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.meta-value {
    font-weight: 600;
    color: var(--dark-color);
}

.case-hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.case-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content-section {
    background-color: white;
    padding: 5rem 0;
}

.case-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.case-main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.case-main-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.case-main-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.case-main-content ul li {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.case-sidebar {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.sidebar-section p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.result-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f9ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.result-text h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.result-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.case-gallery {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.case-cta {
    text-align: center;
    margin-top: 3rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .case-content-grid {
        grid-template-columns: 1fr;
    }

    .case-sidebar {
        position: static;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-options {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-detail-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* 博客页面样式 */
.blog-filter {
    background-color: white;
    padding: 1rem 0 2rem;
}

.blog-filter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-box {
    display: flex;
    max-width: 300px;
}

.search-box input {
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 30px 0 0 30px;
    padding: 8px 15px;
    width: 100%;
    outline: none;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: #1d4ed8;
}

/* 特色文章 */
.featured-post {
    background-color: white;
    padding-bottom: 3rem;
}

.featured-post-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.featured-post-image {
    height: 400px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 2rem;
}

.post-tags {
    margin-bottom: 1rem;
}

.post-tag {
    display: inline-block;
    background-color: #f0f9ff;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.featured-post-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

.featured-post-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* 博客列表 */
.blog-posts {
    background-color: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.blog-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: white;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: white;
}

/* 订阅区域 */
.subscribe-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscribe-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.subscribe-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.subscribe-form .btn:hover {
    background-color: #059669;
}

/* 博客详情页样式 */
.blog-detail-header {
    background-color: white;
    padding: 3rem 0;
}

.blog-detail-header .container {
    max-width: 800px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.blog-meta-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.blog-meta-info p i {
    margin-right: 5px;
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.blog-hero-image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-section {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.blog-content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
}

.blog-main-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.blog-main-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-main-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--dark-color);
}

.blog-main-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1.2rem;
    color: var(--dark-color);
}

.blog-main-content ul,
.blog-main-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-main-content li {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.blog-main-content img {
    width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.blog-main-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--dark-color);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.recent-post-info p {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f9ff;
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

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

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f9ff;
    color: var(--primary-color);
    transition: var(--transition);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .blog-content-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input {
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .subscribe-form .btn {
        border-radius: 50px;
    }
}

@media (max-width: 768px) {
    .blog-filter .container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        height: 250px;
    }

    .featured-post-content h2 {
        font-size: 1.5rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-detail-header h1 {
        font-size: 1.8rem;
    }

    .blog-hero-image {
        height: 300px;
    }
}

/* 联系我们页面样式 */
.contact-info {
    background-color: white;
    padding-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f9ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-card p {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

/* 联系表单和地图 */
.contact-form-section {
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container,
.map-container {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2,
.map-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-form-container p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.map {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

/* 社交媒体部分 */
.contact-social {
    background-color: white;
    text-align: center;
}

.text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.social-icon i {
    width: 80px;
    height: 80px;
    background-color: #f0f9ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.social-icon span {
    font-weight: 600;
    color: var(--dark-color);
}

.social-icon:hover {
    transform: translateY(-10px);
}

.social-icon:hover i {
    background-color: var(--primary-color);
    color: white;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        order: -1;
    }

    .social-icons-large {
        gap: 1rem;
    }

    .social-icon i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .map-container {
        padding: 1.5rem;
    }

    .map {
        height: 300px;
    }
}

/* 咨询表单页面样式 */
.consultation-form-section {
    background-color: var(--light-color);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.consultation-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.consultation-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.consultation-form-container p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.required {
    color: #ef4444;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-single {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.checkbox-single input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-single label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-single a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* 咨询信息侧边栏 */
.consultation-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.benefits-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.benefits-list p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    color: var(--gray-color);
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--dark-color);
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .consultation-form-container,
    .info-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* 职位空缺页面样式 */
.company-culture {
    background-color: white;
}

.company-culture .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.culture-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.culture-content p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f9ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.culture-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* 员工福利 */
.benefits {
    background-color: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f9ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-color);
}

/* 职位列表 */
.job-listings {
    background-color: white;
}

.job-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-10px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
}

.job-type {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.full-time {
    background-color: #dcfce7;
    color: #16a34a;
}

.part-time {
    background-color: #e0f2fe;
    color: #0284c7;
}

.contract {
    background-color: #fef3c7;
    color: #d97706;
}

.job-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.job-location,
.job-department {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.job-location i,
.job-department i {
    margin-right: 0.5rem;
}

.job-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-footer {
    display: flex;
    justify-content: flex-end;
}

/* 招聘流程 */
.hiring-process {
    background-color: var(--light-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
}

/* 常见问题 */
.faq {
    background-color: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1rem;
    color: var(--gray-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .company-culture .container {
        grid-template-columns: 1fr;
    }

    .culture-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .job-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
}

.company-name {

    font-size: 24px;
    font-weight: 600;
    color: rgb(3, 132, 134);
    margin-left: 5px;
    /* Added margin to move text more to the right */
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    /* More practical, versatile font stack */
    white-space: nowrap;
    /* Prevent text from wrapping */
    letter-spacing: 0.5px;
    /* Improved letter spacing for better readability */
    text-rendering: optimizeLegibility;
    /* Better text rendering */
}


.team-grid {
display: flex;
flex-direction: column;
gap: 2rem;
}

/* 小屏幕时启用并排布局 */
@media (min-width: 768px) {
.team-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-member {
    flex: 1 1 calc(50% - 1rem); /* 每行最多两个，间距为 2rem */
    min-width: 300px; /* 防止太窄 */
}
}
.qrcode-container {
    display: flex;
    gap: 20px; /* 两个二维码之间的间距 */
    margin-top: 10px;
}

.qrcode-item {
    position: relative;
    display: inline-block;
}

.qrcode-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.qrcode-img:hover {
    transform: scale(1.1); /* 悬浮放大一点 */
}

.qrcode-tooltip {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.qrcode-item:hover .qrcode-tooltip {
    visibility: visible;
    opacity: 1;
}

/* 加载和错误状态样式 */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
    text-align: center;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.no-results p {
    font-size: 1.1rem;
    margin: 0;
}

/* 分页省略号样式 */
.pagination span {
    padding: 0.5rem;
    color: #6b7280;
}

/* 博客预览相关样式 */
.loading-placeholder, .empty-state, .error-state {
    text-align: center;
    padding: 2rem;
    color: #666;
    grid-column: 1 / -1;
}

.error-state i, .empty-state i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #999;
}

.blog-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.blog-tag {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

