﻿


:root {
    
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-card: #1f2937;
    --bg-elevated: #252d3d;
    --bg-input: #111c2b;
    
    
    --accent-primary: #fc7518;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #e94898;
    --accent-success: #10b981;
    --accent-info: #06b6d4;
    
    
    --gradient-primary: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
    --gradient-card: linear-gradient(145deg, #232b3e 0%, #1a2234 100%);
    
    
    --text-primary: #f2f7f8;
    --text-secondary: #94a3b8;
    --text-muted: #62748c;
    --text-light: #ffffff;
    
    
    --border-color: rgba(254, 255, 252, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    
    --shadow-raised: 8px 8px 20px rgba(0, 2, 0, 0.4), 
                     -4px -4px 12px rgba(255, 255, 255, 0.03);
    --shadow-raised-lg: 12px 12px 30px rgba(0, 0, 0, 0.5), 
                        -6px -6px 20px rgba(255, 255, 255, 0.03);
    --shadow-inset: inset 4px 4px 10px rgba(0, 1, 3, 0.4), 
                    inset -4px -4px 10px rgba(254, 253, 255, 0.02);
    --shadow-glow: 0 0 30px rgba(249, 115, 22, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.3);
    
    
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-tertiary);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

.j501-container-w294 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}


.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.j501-header-w455 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 9999;
    transition: all var(--transition-normal);
}

.j501-header-w455.scrolled {
    background: rgba(22, 33, 62, 0.98);
    box-shadow: var(--shadow-raised);
}

.j501-header-container-lb54 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.j501-logo-iedd {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.j501-logo-iedd img {
    height: 42px;
    width: auto;
}

.logo-slogan {
    width: 139px;
    height: 44px;
    background-image: url("images/logo_tips.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: logoGlow 2.5s infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.8; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 8px rgba(249, 115, 22, 0.4)); }
}


.j501-main-nav-y805 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.j501-nav-list-uc4b {
    display: flex;
    align-items: center;
    gap: 8px;
}

.j501-nav-list-uc4b li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    background: transparent;
    transition: all var(--transition-normal);
}

.j501-nav-list-uc4b li a:hover {
    color: var(--text-light);
    background: var(--bg-card);
    box-shadow: var(--shadow-raised);
}


.j501-header-actions-v3cb {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.j501-btn-contact-qa5b {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.j501-btn-contact-qa5b:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised-lg), 0 0 40px rgba(249, 115, 22, 0.4);
    color: var(--text-light);
}


.j501-menu-toggle-ge93 {
    display: none;
    width: 42px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-raised);
}

.j501-menu-toggle-ge93 span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.j501-menu-toggle-ge93.j501-active-d35b span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.j501-menu-toggle-ge93.j501-active-d35b span:nth-child(2) {
    opacity: 0;
}

.j501-menu-toggle-ge93.j501-active-d35b span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.j501-btn-a08f {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.j501-btn-primary-k4f5 {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.j501-btn-primary-k4f5:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised-lg), 0 0 40px rgba(249, 115, 22, 0.5);
    color: var(--text-light);
}

.j501-btn-primary-k4f5:active {
    transform: translateY(0);
    box-shadow: var(--shadow-inset);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-raised);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--shadow-raised), 0 0 20px rgba(249, 117, 25, 0.2);
}

.j501-btn-large-uace {
    padding: 18px 40px;
    font-size: 15px;
}


.j501-hero-z199 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 119px 0 80px;
    background: var(--gradient-dark);
    overflow: hidden;
}


.j501-hero-z199::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 598px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 114, 25, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.j501-hero-z199::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.j501-hero-z199 .j501-container-w294 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.j501-hero-content-z15d {
    max-width: 560px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 21px;
    box-shadow: var(--shadow-raised);
}

.j501-hero-title-bbe5 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 21px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.j501-hero-buttons-hd4d {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised-lg);
    animation: cardFloat 6s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.card-icon {
    width: 66px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
}

.card-icon img {
    width: 41px;
    height: 40px;
    object-fit: contain;
}

.card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.card-value {
    font-size: 29px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card-1 { top: 5%; left: 5%; }
.hero-card-2 { top: 35%; right: 0; animation-delay: -2s; }
.hero-card-3 { bottom: 10%; left: 15%; animation-delay: -4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


.j501-section-ye9f {
    padding: 100px 0;
    position: relative;
}

.j501-section-header-f1b5 {
    text-align: center;
    margin-bottom: 60px;
}

.j501-section-badge-h178 {
    display: inline-flex;
    align-items: center;


.j501-features-section-tdb3 {
    background: var(--bg-primary);
}

.j501-features-grid-h98a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.j501-feature-card-u4f9 {
    padding: 36px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.j501-feature-card-u4f9:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.j501-feature-icon-p966 {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-normal);
}

.j501-feature-icon-p966 i {
    font-size: 36px;
    color: var(--accent-primary);
}

.j501-feature-card-u4f9:hover .j501-feature-icon-p966 {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transform: scale(1.1);
}

.j501-feature-card-u4f9:hover .j501-feature-icon-p966 i {
    color: var(--text-light);
}

.j501-feature-card-u4f9 h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.j501-feature-card-u4f9 p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
    gap: 8px;
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-raised);
}

.j501-section-title-f160 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.j501-section-desc-m611 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 598px;
    margin: 0 auto;
}


.section-services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 37px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-normal);
}

.service-icon img {
    width: 50px;
    height: 48px;
    object-fit: contain;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}


.section-stats {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.j501-stats-grid-l301 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 30px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow-purple);
}

.stat-icon {
    width: 103px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.j501-stat-value-xdeb {
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.j501-stat-label-b159 {
    font-size: 17px;
    color: var(--text-secondary);
}


.section-news {
    background: var(--bg-primary);
}

.j501-news-grid-ka92 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.news-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-thumb img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 9px 14px;
    background: var(--bg-card);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 50px;
    box-shadow: var(--shadow-raised);
}

.news-body {
    padding: 25px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-title a {
    color: var(--text-primary);
}

.news-title a:hover {
    color: var(--accent-primary);
}

.news-excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.news-more svg {
    transition: transform var(--transition-fast);
}

.news-more:hover svg {
    transform: translateX(4px);
}


.section-partners {
    background: var(--bg-dark);
    padding: 80px 0;
}

.j501-partners-grid-yebb {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
}

.j501-partner-item-ead6 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background: var(--bg-card);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    transition: all var(--transition-normal);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.05);
}

.j501-partner-item-ead6:hover {
    border-color: #f97316;
    box-shadow: 5px 5px 20px rgba(249, 115, 22, 0.4), -5px -5px 20px rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.j501-partner-item-ead6 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.j501-partner-item-ead6:hover img {
    opacity: 1;
    filter: brightness(1.4);
}


.section-cta {
    position: relative;
    padding: 121px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 502px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.j501-cta-content-pb7b {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-raised-lg);
}

.j501-cta-content-pb7b h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--text-primary);
}

.j501-cta-content-pb7b p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.j501-cta-buttons-rd23 {
    margin-bottom: 22px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.cta-feature {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-success);
}


.j501-footer-vd7a {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.j501-footer-grid-y86c {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.j501-footer-brand-w07f {
    max-width: 320px;
}

.j501-footer-logo-k02c {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.j501-footer-logo-k02c img {
    height: 40px;
}

.j501-footer-logo-k02c span {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.j501-footer-brand-w07f p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 20px;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.j501-footer-links-lff6 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.j501-footer-links-lff6 ul li {
    margin-bottom: 14px;
}

.j501-footer-links-lff6 ul li a,
.j501-footer-links-lff6 ul li span {
    font-size: 17px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.j501-footer-links-lff6 ul li a:hover {
    color: var(--accent-primary);
}

.j501-footer-bottom-ie1e {
    padding: 27px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.j501-footer-bottom-ie1e p {
    font-size: 12px;
    color: var(--text-muted);
}


.page-banner {
    position: relative;
    padding: 141px 0 60px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 398px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.page-banner .j501-container-w294 {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb .sep {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

.j501-page-title-ff76 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.j501-page-desc-sa35 {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}


.section-list {
    background: var(--bg-primary);
    padding: 63px 0 100px;
}

.list-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.list-main {
    min-width: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.article-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.article-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-input);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.article-card:hover .article-thumb img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 12px;
    left: 9px;
    padding: 9px 14px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-raised);
}

.article-content {
    padding: 23px;
}

.article-meta {
    margin-bottom: 15px;
}

.meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.5;
}

.article-title a {
    color: var(--text-primary);
}

.article-title a:hover {
    color: var(--accent-primary);
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.article-link svg {
    transition: transform var(--transition-fast);
}

.article-link:hover svg {
    transform: translateX(4px);
}


.j501-pagination-j98f {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 46px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-fast);
}

.page-num:hover,
.page-num.j501-active-d35b {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.list-sidebar,
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 27px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-raised);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.title-icon {
    font-size: 20px;
}


.hot-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hot-item {
    transition: transform var(--transition-fast);
}

.hot-item:hover {
    transform: translateX(5px);
}

.hot-link {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hot-thumb {
    flex-shrink: 0;
    width: 73px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.hot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-info {
    flex: 1;
    min-width: 0;
}

.hot-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.hot-date {
    font-size: 10px;
    color: var(--text-muted);
}


.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 6px 18px;
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 10px;
    border-radius: 50px;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.tag-item:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.widget-contact {
    background: var(--gradient-primary);
    border: none;
    text-align: center;
}

.widget-contact .widget-title {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    justify-content: center;
    color: var(--text-light);
}

.widget-contact .title-icon {
    color: var(--text-light);
}

.widget-contact p {
    font-size: 18px;
    color: rgba(254, 252, 254, 0.9);
    margin-bottom: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 50px;
    margin-top: 19px;
    transition: all var(--transition-fast);
}

.contact-btn:hover {
    background: rgba(253, 252, 253, 0.3);
    color: var(--text-light);
    transform: translateY(-2px);
}


.section-article {
    background: var(--bg-primary);
    padding: 40px 0 100px;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-detail {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-raised);
}

.article-header {
    margin-bottom: 34px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--border-color);
}

.article-detail .article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.article-detail .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.meta-item svg {
    color: var(--text-muted);
}

.meta-item a {
    color: var(--accent-primary);
}


.article-summary {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-input);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 32px;
    box-shadow: var(--shadow-inset);
}

.summary-icon {
    font-size: 27px;
    flex-shrink: 0;
}

.summary-content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.summary-content strong {
    color: var(--text-primary);
}


.j501-article-body-aebf {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-primary);
}

.j501-article-body-aebf h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 48px 0 20px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--accent-primary);
    color: var(--text-primary);
}

.j501-article-body-aebf h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 39px 0 16px;
    color: var(--text-primary);
}

.j501-article-body-aebf h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}

.j501-article-body-aebf p {
    margin: 18px 0;
    color: var(--text-secondary);
}

.j501-article-body-aebf img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: var(--radius-sm);
    margin: 28px auto !important;
    display: block !important;
    box-shadow: var(--shadow-raised);
}

.j501-article-body-aebf p img,
.j501-detail-content-ae78 p img {
    margin-left: auto !important;
    margin-right: auto !important;
}

.j501-article-body-aebf p:has(img),
.j501-detail-content-ae78 p:has(img) {
    text-align: center;
}

.j501-article-body-aebf ul,
.j501-article-body-aebf ol {
    margin: 18px 0;
    padding-left: 28px;
}

.j501-article-body-aebf li {
    margin: 13px 0;
    color: var(--text-secondary);
}

.j501-article-body-aebf ul li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.j501-article-body-aebf blockquote {
    margin: 27px 0;
    padding: 27px 28px;
    background: var(--bg-input);
    border-left: 4px solid var(--accent-secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
    box-shadow: var(--shadow-inset);
}

.j501-article-body-aebf strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.j501-article-body-aebf a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.j501-article-body-aebf table {
    width: 100%;
    border-collapse: collapse;
    margin: 29px 0;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.j501-article-body-aebf table th {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 17px 18px;
    text-align: left;
    font-weight: 600;
}

.j501-article-body-aebf table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.j501-article-body-aebf table tr:hover {
    background: var(--bg-elevated);
}


.article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.article-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--shadow-raised);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.tags-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.tag-link {
    display: inline-block;
    padding: 6px 18px;
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 13px;
    border-radius: 50px;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}


.related-articles {
    margin-top: 48px;
}

.j501-related-title-ff19 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.j501-related-grid-mc96 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-raised);
    transition: all var(--transition-normal);
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-raised-lg), var(--shadow-glow);
}

.related-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    flex: 1;
    min-width: 0;
}

.related-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.related-date {
    font-size: 11px;
    color: var(--text-muted);
}


.widget-author {
    text-align: center;
}

.author-avatar {
    width: 89px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-primary);
    padding: 4px;
    box-shadow: var(--shadow-raised), var(--shadow-glow);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: var(--bg-card);
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.author-bio {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 13px;
}

.author-follow {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-raised), var(--shadow-glow);
    transition: all var(--transition-fast);
}

.author-follow:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised-lg), 0 0 30px rgba(249, 115, 22, 0.4);
    color: var(--text-light);
}


@media (max-width: 1027px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    
    .j501-features-grid-h98a {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    
    .j501-partners-grid-yebb {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .j501-stats-grid-l301 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .j501-news-grid-ka92 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .j501-hero-z199 .j501-container-w294 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .j501-hero-content-z15d {
        max-width: 100%;
    }
    
    .j501-hero-buttons-hd4d {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .list-wrapper,
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .list-sidebar,
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
    
    .j501-footer-grid-y86c {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }
    
    .j501-partners-grid-yebb {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .j501-partner-item-ead6 {
        height: 80px;
        padding: 15px;
    }
    
    .j501-container-w294 {
        padding: 0 16px;
    }
    
    .logo-slogan {
        width: 100px;
        height: 35px;
    }
    
    
    .j501-main-nav-y805 {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        box-shadow: var(--shadow-raised-lg);
        z-index: 9998;
    }
    
    .j501-main-nav-y805.j501-active-d35b {
        display: block;
    }
    
    .j501-nav-list-uc4b {
        flex-direction: column;
        gap: 0;
    }
    
    .j501-nav-list-uc4b li {
        width: 100%;
    }
    
    .j501-nav-list-uc4b li a {
        display: block;
        padding: 16px 20px;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .j501-nav-list-uc4b li:last-child a {
        border-bottom: none;
    }
    
    .j501-btn-contact-qa5b {
        display: none;
    }
    
    .j501-menu-toggle-ge93 {
        display: flex !important;
    }
    
    
    .j501-hero-z199 {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .j501-hero-title-bbe5 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .j501-hero-buttons-hd4d {
        flex-direction: column;
        align-items: stretch;
    }
    
    
    .j501-section-ye9f {
        padding: 60px 0;
    }
    
    .j501-section-title-f160 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    
    
    .j501-features-grid-h98a {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    }
    
    .j501-stats-grid-l301 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 24px 16px;
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
    }
    
    .j501-stat-value-xdeb {
        font-size: 32px;
    }
    
    .j501-news-grid-ka92 {
        grid-template-columns: 1fr;
    }
    
    .j501-cta-content-pb7b {
        padding: 38px 24px;
    }
    
    .j501-cta-content-pb7b h2 {
        font-size: 29px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    
    
    .j501-page-title-ff76 {
        font-size: 28px;
    }
    
    
    .section-list {
        padding: 30px 0 60px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .list-sidebar {
        display: none;
    }
    
    
    .j501-pagination-j98f {
        gap: 6px;
        padding: 0 8px;
    }
    
    .page-num {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-detail {
        padding: 31px 20px;
    }
    
    .article-detail .article-title {
        font-size: 25px;
    }
    
    .article-detail .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .j501-related-grid-mc96 {
        grid-template-columns: 1fr;
    }
    
    
    .j501-footer-grid-y86c {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .j501-footer-brand-w07f {
        max-width: 100%;
    }
}


@media (max-width: 480px) {
    .j501-hero-title-bbe5 {
        font-size: 31px;
    }
    
    .j501-section-title-f160 {
        font-size: 23px;
    }
    
    .article-detail .article-title {
        font-size: 22px;
    }
    
    .j501-page-title-ff76 {
        font-size: 24px;
    }
    
    .j501-cta-content-pb7b h2 {
        font-size: 22px;
    }
    
    .j501-stats-grid-l301 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .j501-stat-value-xdeb {
        font-size: 28px;
    }
}

/* === disguise mutation rules === */
[class*="j501-ghost-"]{display:none!important;position:absolute;width:0;height:0;overflow:hidden;clip:rect(0,0,0,0);border:0;padding:0;margin:0}
[class*="j501-wrapper-"]{display:contents}
/* === end mutation rules === */


