/* ==================== 网站A - 现代简约风格 ==================== */

/* CSS Variables */
:root {
    --cxy-primary: #2563eb;
    --cxy-primary-dark: #1e40af;
    --cxy-secondary: #0ea5e9;
    --cxy-accent: #f59e0b;
    --cxy-success: #10b981;
    --cxy-text: #1f2937;
    --cxy-text-light: #6b7280;
    --cxy-text-lighter: #9ca3af;
    --cxy-bg: #ffffff;
    --cxy-bg-light: #f9fafb;
    --cxy-bg-lighter: #f3f4f6;
    --cxy-border: #e5e7eb;
    --cxy-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --cxy-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --cxy-radius: 8px;
    --cxy-radius-lg: 16px;
    --cxy-radius-full: 9999px;
    --cxy-transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cxy-text);
    background-color: var(--cxy-bg);
}

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

/* ==================== Header ==================== */
.cxy-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--cxy-bg);
    border-bottom: 1px solid var(--cxy-border);
    z-index: 1000;
    transition: var(--cxy-transition);
}

.cxy-header.scrolled {
    box-shadow: var(--cxy-shadow);
}

.cxy-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.cxy-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cxy-primary);
}

.cxy-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Navigation */
.cxy-nav {
    display: flex;
}

.cxy-nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

/* Mobile Navigation (hidden by default on larger screens) */
@media (max-width: 767px) {
    .cxy-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    .cxy-nav.cxy-mobile-active {
        max-height: 300px;
    }

    .cxy-nav.cxy-mobile-active .cxy-nav-list {
        display: flex;
    }

    .cxy-nav-list {
        flex-direction: column;
        gap: 0;
    }

    .cxy-nav-item {
        border-bottom: 1px solid #e5e7eb;
    }

    .cxy-nav-link {
        display: block;
        padding: 16px;
        text-align: center;
    }
}

.cxy-nav-link {
    color: var(--cxy-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--cxy-transition);
    position: relative;
}

.cxy-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cxy-primary);
    transition: var(--cxy-transition);
}

.cxy-nav-link:hover::after,
.cxy-nav-link.cxy-active::after {
    width: 100%;
}

.cxy-nav-link.cxy-active {
    color: var(--cxy-primary);
}

/* Search Form */
.cxy-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cxy-search-form {
    display: flex;
    align-items: center;
}

.cxy-search-input {
    width: 200px;
    padding: 8px 16px;
    border: 1px solid var(--cxy-border);
    border-radius: var(--cxy-radius-full);
    font-size: 0.875rem;
    outline: none;
    transition: var(--cxy-transition);
}

.cxy-search-input:focus {
    border-color: var(--cxy-primary);
}

.cxy-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--cxy-text);
}

/* Menu Toggle */
.cxy-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* ==================== Hero Section ==================== */
.cxy-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.cxy-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--cxy-primary) 0%, var(--cxy-secondary) 100%);
    z-index: -2;
}

.cxy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: -1;
}

.cxy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.cxy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cxy-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cxy-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Buttons */
.cxy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--cxy-radius-full);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--cxy-transition);
    border: none;
}

.cxy-btn-primary {
    background-color: #fff;
    color: var(--cxy-primary);
}

.cxy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cxy-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cxy-btn-secondary:hover {
    background-color: #fff;
    color: var(--cxy-primary);
}

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

.cxy-btn-lg {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* ==================== Partners Section ==================== */

/* ==================== Services Section ==================== */
.cxy-services-section {
    padding: 100px 0;
}

.cxy-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cxy-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cxy-section-subtitle {
    font-size: 1.125rem;
    color: var(--cxy-text-light);
}

.cxy-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cxy-service-card {
    padding: 40px 32px;
    background-color: var(--cxy-bg);
    border-radius: var(--cxy-radius-lg);
    text-align: center;
    transition: var(--cxy-transition);
}

.cxy-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cxy-shadow-lg);
}

.cxy-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cxy-primary), var(--cxy-secondary));
    border-radius: var(--cxy-radius-full);
    color: #fff;
    font-size: 2rem;
}

.cxy-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cxy-service-desc {
    color: var(--cxy-text-light);
}

/* ==================== Stats Section ==================== */
.cxy-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cxy-primary), var(--cxy-secondary));
    color: #fff;
}

.cxy-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.cxy-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cxy-stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ==================== About Section ==================== */
.cxy-about-section {
    padding: 100px 0;
    background-color: var(--cxy-bg-light);
}

.cxy-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cxy-about-image {
    border-radius: var(--cxy-radius-lg);
    overflow: hidden;
    box-shadow: var(--cxy-shadow-lg);
}

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

.cxy-about-text {
    margin-bottom: 30px;
}

.cxy-about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--cxy-text-light);
    margin-bottom: 16px;
}

.cxy-about-actions {
    margin-top: 20px;
}

/* ==================== News Section ==================== */
.cxy-news-section {
    padding: 100px 0;
    background-color: var(--cxy-bg);
}

.cxy-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.cxy-news-card {
    background-color: var(--cxy-bg-light);
    border-radius: var(--cxy-radius-lg);
    overflow: hidden;
    transition: var(--cxy-transition);
}

.cxy-news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cxy-shadow-lg);
}

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

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

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

.cxy-news-content {
    padding: 24px;
}

.cxy-news-date {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--cxy-text-lighter);
    margin-bottom: 8px;
}

.cxy-news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cxy-news-excerpt {
    font-size: 0.9375rem;
    color: var(--cxy-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cxy-news-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--cxy-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--cxy-transition);
}

.cxy-news-link:hover {
    color: var(--cxy-primary-dark);
}

.cxy-news-link i {
    margin-left: 8px;
    transition: var(--cxy-transition);
}

.cxy-news-link:hover i {
    transform: translateX(4px);
}

.cxy-news-actions {
    text-align: center;
    margin-top: 20px;
}

/* ==================== Cases Section ==================== */
.cxy-cases-section {
    padding: 100px 0;
}

.cxy-cases-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.cxy-case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cxy-case-reverse {
    direction: rtl;
}

.cxy-case-reverse .cxy-case-content {
    direction: ltr;
}

.cxy-case-image img {
    width: 100%;
    border-radius: var(--cxy-radius-lg);
}

.cxy-case-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--cxy-primary), var(--cxy-secondary));
    color: #fff;
    border-radius: var(--cxy-radius-full);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.cxy-case-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cxy-case-desc {
    color: var(--cxy-text-light);
    margin-bottom: 24px;
}

.cxy-case-results {
    display: flex;
    gap: 16px;
}

.cxy-case-result {
    padding: 8px 16px;
    background-color: var(--cxy-success);
    color: #fff;
    border-radius: var(--cxy-radius);
    font-weight: 600;
}

/* ==================== CTA Section ==================== */
.cxy-cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.cxy-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--cxy-accent), #ef4444);
    z-index: -1;
}

.cxy-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cxy-cta-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

/* ==================== Footer ==================== */
.cxy-footer {
    background-color: #1f2937;
    color: #fff;
    padding: 60px 0 20px;
}

.cxy-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.cxy-footer-logo {
    margin-bottom: 20px;
}

.cxy-footer-logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.cxy-footer-desc {
    color: #9ca3af;
    margin-bottom: 20px;
}

.cxy-footer-social {
    display: flex;
    gap: 12px;
}

.cxy-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--cxy-radius);
    color: #fff;
    transition: var(--cxy-transition);
}

.cxy-social-link:hover {
    background-color: var(--cxy-primary);
}

/* 微信二维码弹窗 */
.cxy-wechat-wrapper {
    position: relative;
    cursor: pointer;
}

.cxy-qr-code-popup {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.cxy-wechat-wrapper:hover .cxy-qr-code-popup {
    opacity: 1;
    visibility: visible;
}

.cxy-qr-code-popup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cxy-footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cxy-footer-links,
.cxy-footer-contact {
    list-style: none;
}

.cxy-footer-links li,
.cxy-footer-contact li {
    margin-bottom: 12px;
}

.cxy-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--cxy-transition);
}

.cxy-footer-links a:hover {
    color: #fff;
}

.cxy-footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

.cxy-subscribe-form {
    display: flex;
    gap: 8px;
}

.cxy-subscribe-input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: var(--cxy-radius);
    font-size: 0.875rem;
}

.cxy-subscribe-btn {
    padding: 10px 20px;
    background-color: var(--cxy-primary);
    color: #fff;
    border: none;
    border-radius: var(--cxy-radius);
    cursor: pointer;
    transition: var(--cxy-transition);
}

.cxy-subscribe-btn:hover {
    background-color: var(--cxy-primary-dark);
}

.cxy-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
}

.cxy-footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--cxy-transition);
}

.cxy-footer-bottom a:hover {
    color: #fff;
}

/* ==================== Back to Top ==================== */
.cxy-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--cxy-primary);
    color: #fff;
    border: none;
    border-radius: var(--cxy-radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--cxy-transition);
    z-index: 999;
}

.cxy-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.cxy-back-to-top:hover {
    background-color: var(--cxy-primary-dark);
    transform: translateY(-4px);
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
    .cxy-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cxy-case-item {
        grid-template-columns: 1fr;
    }

    .cxy-case-reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .cxy-nav-list {
        display: none;
    }

    .cxy-menu-toggle {
        display: block;
    }

    .cxy-search-form {
        display: none;
    }

    /* Mobile Navigation */
    .cxy-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: auto;
        background: var(--cxy-bg);
        box-shadow: var(--cxy-shadow-lg);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        z-index: 999;
        width: 100vw;
        margin: 0;
        padding: 0;
    }

    .cxy-nav.cxy-mobile-active {
        max-height: 400px;
    }

    .cxy-nav.cxy-mobile-active .cxy-nav-list {
        display: flex;
    }

    .cxy-nav-list {
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        margin: 0;
    }

    .cxy-nav-item {
        border-bottom: 1px solid var(--cxy-border);
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .cxy-nav-link {
        display: block;
        padding: 16px 20px;
        text-align: center;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .cxy-hero-title {
        font-size: 2rem;
    }

    .cxy-section-title {
        font-size: 1.75rem;
    }

    .cxy-services-grid,
    .cxy-stats-grid,
    .cxy-news-grid {
        grid-template-columns: 1fr;
    }

    .cxy-news-card {
        box-shadow: var(--cxy-shadow);
    }

    .cxy-about-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .cxy-about-image {
        margin: 0 auto;
        max-width: 400px;
    }

    .cxy-about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cxy-footer-main {
        grid-template-columns: 1fr;
    }

    .cxy-hero-actions {
        flex-direction: column;
    }
}

/* ==================== Page Header ==================== */
.cxy-page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--cxy-bg-light);
}

.cxy-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cxy-page-subtitle {
    font-size: 1.125rem;
    color: var(--cxy-text-light);
}

/* ==================== Breadcrumb ==================== */
.cxy-breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid var(--cxy-border);
}

.cxy-breadcrumb .cxy-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cxy-text-light);
    font-size: 0.875rem;
}

.cxy-breadcrumb a {
    color: var(--cxy-text-light);
    text-decoration: none;
}

.cxy-breadcrumb a:hover {
    color: var(--cxy-primary);
}

/* ==================== Column Page ==================== */
.cxy-category-item.cxy-active {
    border-color: var(--cxy-primary);
    background: var(--cxy-bg-light);
}

.cxy-category-item i {
    color: var(--cxy-primary);
}

.cxy-category-count {
    color: var(--cxy-text-light);
    font-size: 0.875rem;
}

.cxy-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.cxy-article-item {
    background: var(--cxy-bg);
    border-radius: var(--cxy-radius-lg);
    overflow: hidden;
    box-shadow: var(--cxy-shadow);
    transition: var(--cxy-transition);
}

.cxy-article-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--cxy-shadow-lg);
}

.cxy-article-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cxy-article-body {
    padding: 24px;
}

.cxy-article-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cxy-primary);
    color: #fff;
    border-radius: var(--cxy-radius);
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.cxy-article-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cxy-article-title a {
    color: var(--cxy-text);
    text-decoration: none;
}

.cxy-article-title a:hover {
    color: var(--cxy-primary);
}

.cxy-article-excerpt {
    color: var(--cxy-text-light);
    margin-bottom: 16px;
}

.cxy-article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--cxy-text-light);
    font-size: 0.875rem;
}

.cxy-article-date,
.cxy-article-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cxy-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cxy-page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--cxy-border);
    border-radius: var(--cxy-radius);
    color: var(--cxy-text);
    text-decoration: none;
    transition: var(--cxy-transition);
}

.cxy-page-btn:hover {
    background: var(--cxy-bg-light);
}

.cxy-page-btn.cxy-active {
    background: var(--cxy-primary);
    border-color: var(--cxy-primary);
    color: #fff;
}

.cxy-page-btn.cxy-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==================== Article Detail ==================== */
.cxy-article-detail {
    padding: 60px 0;
}

.cxy-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.cxy-article-main {
    background: var(--cxy-bg);
    border-radius: var(--cxy-radius-lg);
    padding: 40px;
    box-shadow: var(--cxy-shadow);
}

.cxy-article-header {
    margin-bottom: 32px;
}

.cxy-article-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--cxy-primary);
    color: #fff;
    border-radius: var(--cxy-radius-full);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.cxy-article-h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.cxy-article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--cxy-text-light);
}

.cxy-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cxy-article-cover img {
    width: 100%;
    border-radius: var(--cxy-radius-lg);
    margin-bottom: 32px;
}

.cxy-article-content {
    line-height: 1.8;
    margin-bottom: 40px;
}

.cxy-article-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px;
}

.cxy-article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

.cxy-article-content p {
    margin-bottom: 16px;
}

.cxy-article-content ul,
.cxy-article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.cxy-article-content li {
    margin-bottom: 8px;
}

.cxy-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--cxy-border);
    border-bottom: 1px solid var(--cxy-border);
}

.cxy-tag-label {
    font-weight: 600;
}

.cxy-tag {
    padding: 6px 16px;
    background: var(--cxy-bg-light);
    color: var(--cxy-text);
    border-radius: var(--cxy-radius-full);
    text-decoration: none;
    transition: var(--cxy-transition);
}

.cxy-tag:hover {
    background: var(--cxy-primary);
    color: #fff;
}

.cxy-article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
}

.cxy-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--cxy-bg-light);
    color: var(--cxy-text);
    border-radius: 50%;
    transition: var(--cxy-transition);
}

.cxy-share-link:hover {
    background: var(--cxy-primary);
    color: #fff;
}

.cxy-article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
}

.cxy-nav-prev,
.cxy-nav-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--cxy-bg-light);
    color: var(--cxy-text);
    border-radius: var(--cxy-radius);
    text-decoration: none;
    transition: var(--cxy-transition);
}

.cxy-nav-prev:hover,
.cxy-nav-next:hover {
    background: var(--cxy-primary);
    color: #fff;
}

/* Related Articles */
.cxy-related-articles {
    margin-top: 48px;
}

.cxy-related-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cxy-related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cxy-related-item {
    display: block;
    text-decoration: none;
}

.cxy-related-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--cxy-radius);
    margin-bottom: 12px;
}

.cxy-related-item h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cxy-text);
}

/* Sidebar */
.cxy-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cxy-sidebar-widget {
    background: var(--cxy-bg);
    padding: 24px;
    border-radius: var(--cxy-radius-lg);
    box-shadow: var(--cxy-shadow);
}

.cxy-widget-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cxy-author-card {
    display: flex;
    gap: 16px;
}

.cxy-author-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.cxy-author-info h5 {
    font-weight: 600;
    margin-bottom: 4px;
}

.cxy-author-info p {
    font-size: 0.875rem;
    color: var(--cxy-text-light);
}

.cxy-article-toc {
    list-style: none;
}

.cxy-article-toc li {
    margin-bottom: 8px;
}

.cxy-article-toc a {
    color: var(--cxy-text);
    text-decoration: none;
    transition: var(--cxy-transition);
}

.cxy-article-toc a:hover {
    color: var(--cxy-primary);
}

.cxy-hot-articles {
    list-style: none;
}

.cxy-hot-articles li {
    margin-bottom: 12px;
}

.cxy-hot-articles a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cxy-text);
    text-decoration: none;
}

.cxy-hot-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--cxy-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
}


/* ==================== About Page ==================== */
.cxy-about-intro {
    padding: 60px 0;
}

.cxy-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cxy-intro-image img {
    width: 100%;
    border-radius: var(--cxy-radius-lg);
}

.cxy-intro-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.cxy-values-section {
    padding: 60px 0;
    background: var(--cxy-bg-light);
}

.cxy-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cxy-value-item {
    text-align: center;
    padding: 32px;
    background: var(--cxy-bg);
    border-radius: var(--cxy-radius-lg);
    transition: var(--cxy-transition);
}

.cxy-value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--cxy-shadow);
}

.cxy-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cxy-bg-light);
    border-radius: 50%;
    color: var(--cxy-primary);
    font-size: 1.5rem;
}

.cxy-value-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cxy-value-desc {
    font-size: 0.875rem;
    color: var(--cxy-text-light);
}

.cxy-team-section {
    padding: 60px 0;
}

.cxy-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cxy-team-member {
    text-align: center;
}

.cxy-team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.cxy-team-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cxy-team-role {
    color: var(--cxy-primary);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.cxy-team-desc {
    font-size: 0.875rem;
    color: var(--cxy-text-light);
}

.cxy-timeline-section {
    padding: 60px 0;
}

.cxy-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.cxy-timeline-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--cxy-border);
}

.cxy-timeline-item:last-child {
    border-bottom: none;
}

.cxy-timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cxy-gradient);
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.cxy-timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cxy-timeline-content p {
    color: var(--cxy-text-light);
}

.cxy-partners-showcase {
    padding: 60px 0;
    background: var(--cxy-bg-light);
}

.cxy-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.cxy-partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    background: var(--cxy-bg);
    border-radius: var(--cxy-radius);
    font-weight: 600;
    color: var(--cxy-text-light);
}

/* ==================== Contact Page ==================== */
.cxy-contact-section {
    padding: 60px 0;
}

.cxy-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.cxy-contact-info {
    padding: 32px;
    background: var(--cxy-bg-light);
    border-radius: var(--cxy-radius-lg);
}

.cxy-contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cxy-contact-desc {
    color: var(--cxy-text-light);
    margin-bottom: 32px;
}

.cxy-contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cxy-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cxy-contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cxy-primary);
    color: #fff;
    border-radius: 50%;
}

.cxy-contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cxy-contact-text p {
    color: var(--cxy-text-light);
}

.cxy-contact-text span {
    display: block;
    font-size: 0.875rem;
    color: var(--cxy-text-light);
}

/* 微信二维码悬停显示 */
.cxy-contact-item-wechat {
    position: relative;
}

.cxy-qr-code {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.cxy-contact-item-wechat:hover .cxy-qr-code {
    opacity: 1;
    visibility: visible;
}

.cxy-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cxy-social-links {
    margin-top: 32px;
}

.cxy-social-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cxy-social-icons {
    display: flex;
    gap: 12px;
}

.cxy-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--cxy-bg);
    color: var(--cxy-text);
    border-radius: 50%;
    transition: var(--cxy-transition);
}

.cxy-social-icon:hover {
    background: var(--cxy-primary);
    color: #fff;
}

.cxy-contact-form-wrapper {
    background: var(--cxy-bg);
    padding: 32px;
    border-radius: var(--cxy-radius-lg);
    box-shadow: var(--cxy-shadow);
}

.cxy-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cxy-form-desc {
    color: var(--cxy-text-light);
    margin-bottom: 24px;
}

.cxy-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cxy-form-group {
    display: flex;
    flex-direction: column;
}

.cxy-form-group label {
    font-weight: 500;
    margin-bottom: 8px;
}

.cxy-input,
.cxy-select,
.cxy-textarea {
    padding: 12px 16px;
    border: 1px solid var(--cxy-border);
    border-radius: var(--cxy-radius);
    font-size: 1rem;
    font-family: inherit;
}

.cxy-input:focus,
.cxy-select:focus,
.cxy-textarea:focus {
    outline: none;
    border-color: var(--cxy-primary);
}

.cxy-textarea {
    resize: vertical;
    min-height: 120px;
}

.cxy-checkbox-group {
    flex-direction: row;
    align-items: center;
}

.cxy-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cxy-checkbox-label input {
    width: 18px;
    height: 18px;
}

.cxy-checkbox-label a {
    color: var(--cxy-primary);
}

.cxy-btn-block {
    width: 100%;
}

.cxy-map-section {
    padding: 60px 0;
}

.cxy-map-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cxy-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: var(--cxy-bg-light);
    border-radius: var(--cxy-radius-lg);
}

.cxy-map-placeholder i {
    font-size: 3rem;
    color: var(--cxy-text-light);
    margin-bottom: 16px;
}

.cxy-map-placeholder p {
    margin-bottom: 16px;
}

.cxy-faq-section {
    padding: 60px 0;
    background: var(--cxy-bg-light);
}

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

.cxy-faq-item {
    background: var(--cxy-bg);
    padding: 24px;
    border-radius: var(--cxy-radius-lg);
    margin-bottom: 16px;
}

.cxy-faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cxy-primary);
}

.cxy-faq-answer p {
    color: var(--cxy-text-light);
}

/* Responsive Updates */
@media (max-width: 992px) {
    .cxy-article-layout {
        grid-template-columns: 1fr;
    }

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

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

    .cxy-contact-layout {
        grid-template-columns: 1fr;
    }

    .cxy-articles-grid {
        grid-template-columns: 1fr;
    }

    .cxy-related-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cxy-page-title {
        font-size: 1.75rem;
    }

    .cxy-intro-content {
        grid-template-columns: 1fr;
    }

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

    .cxy-article-h1 {
        font-size: 1.5rem;
    }

    .cxy-article-main {
        padding: 24px;
    }

    .cxy-article-nav {
        flex-direction: column;
    }

    .cxy-timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
