/* 糖心短视频vlog柚子猫 - jshjxy.cn 主样式文件 */
/* 全新设计 - 原创模版 2025-10-10 */

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

:root {
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Header Styles */
.jshjxy-header-8n4p1w {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.jshjxy-header-8n4p1w .jshjxy-container-5t6r2a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.jshjxy-logo-3d8k9m h1 {
    font-size: 20px;
    font-weight: 700;
}

.jshjxy-logo-3d8k9m h1 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.jshjxy-logo-3d8k9m h1 a:hover {
    color: var(--secondary-color);
}

.jshjxy-nav-7w5q3p {
    display: flex;
    gap: 30px;
}

.jshjxy-nav-7w5q3p a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.jshjxy-nav-7w5q3p a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.jshjxy-nav-7w5q3p a:hover::after,
.jshjxy-nav-7w5q3p a.jshjxy-active-2m9k4n::after {
    width: 100%;
}

.jshjxy-mobile-toggle-6h3w8k {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.jshjxy-mobile-toggle-6h3w8k span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.jshjxy-hero-4n7m2w {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jshjxy-hero-bg-8k5p3t {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.jshjxy-hero-overlay-2w9n4k {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.jshjxy-hero-content-7m3k8p {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jshjxy-hero-title-9w4n2m {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.jshjxy-hero-subtitle-5k8m3w {
    font-size: 24px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.jshjxy-hero-desc-3n7w9k {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.jshjxy-hero-buttons-2m5k7w {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.jshjxy-btn-primary-8w3n4k,
.jshjxy-btn-secondary-6k9m2p {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.jshjxy-btn-primary-8w3n4k:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.jshjxy-btn-secondary-6k9m2p {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.jshjxy-btn-secondary-6k9m2p:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.jshjxy-scroll-indicator-4w7n3m {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.jshjxy-scroll-indicator-4w7n3m span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.jshjxy-scroll-indicator-4w7n3m span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Common Styles */
.jshjxy-section-header-7n4w2k {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.jshjxy-section-title-3m9k5w {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.jshjxy-section-subtitle-2w7k4n {
    font-size: 18px;
    color: var(--text-light);
}

/* Intro Section */
.jshjxy-intro-section-5m8k3w {
    padding: 100px 0;
    background: var(--white);
}

.jshjxy-intro-grid-8k3m7w {
    display: grid;
    gap: 40px;
}

.jshjxy-intro-item-4n2w9k {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.jshjxy-intro-img-5w8k3m {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.jshjxy-intro-img-5w8k3m:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.jshjxy-intro-text-7m4n2w h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.jshjxy-intro-text-7m4n2w p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Section */
.jshjxy-services-section-9w3k5m {
    padding: 100px 0;
    background: var(--bg-light);
}

.jshjxy-services-grid-4k7m2w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.jshjxy-service-card-8n3w5k {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.jshjxy-service-card-8n3w5k:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.jshjxy-service-icon-2m9k4w {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.jshjxy-service-icon-2m9k4w img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jshjxy-service-card-8n3w5k h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.jshjxy-service-card-8n3w5k p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.jshjxy-service-link-7w4k2n {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.jshjxy-service-link-7w4k2n:hover {
    color: var(--secondary-color);
}

/* Cases Section */
.jshjxy-cases-section-5k8m3w {
    padding: 100px 0;
    background: var(--white);
}

.jshjxy-cases-grid-9w4k2m {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.jshjxy-case-item-3n7w5k {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.jshjxy-case-item-3n7w5k:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.jshjxy-case-img-wrapper-8k2m4w {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.jshjxy-case-img-wrapper-8k2m4w img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.jshjxy-case-item-3n7w5k:hover .jshjxy-case-img-wrapper-8k2m4w img {
    transform: scale(1.1);
}

.jshjxy-case-overlay-5w9k3m {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(231, 76, 60, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    padding: 20px;
}

.jshjxy-case-item-3n7w5k:hover .jshjxy-case-overlay-5w9k3m {
    opacity: 1;
}

.jshjxy-case-overlay-5w9k3m h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.jshjxy-case-info-7m3k9w {
    padding: 25px;
}

.jshjxy-case-info-7m3k9w h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.jshjxy-case-info-7m3k9w p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.jshjxy-case-date-2w8k4n {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-light);
}

.jshjxy-cases-more-4w7k3n {
    text-align: center;
}

.jshjxy-btn-outline-9k2m5w {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.jshjxy-btn-outline-9k2m5w:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Advantages Section */
.jshjxy-advantages-section-6k3m8w {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jshjxy-advantages-section-6k3m8w .jshjxy-section-title-3m9k5w,
.jshjxy-advantages-section-6k3m8w .jshjxy-section-subtitle-2w7k4n {
    color: var(--white);
}

.jshjxy-advantages-grid-5m9k2w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.jshjxy-advantage-card-3w7k4n {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.jshjxy-advantage-card-3w7k4n:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.jshjxy-advantage-num-8k2m9w {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.8;
}

.jshjxy-advantage-card-3w7k4n h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.jshjxy-advantage-card-3w7k4n p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Stats Section */
.jshjxy-stats-section-7m4k3w {
    padding: 80px 0;
    background: var(--text-dark);
}

.jshjxy-stats-grid-2w9k5m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.jshjxy-stat-item-8k3m4w {
    text-align: center;
    color: var(--white);
}

.jshjxy-stat-number-5w7k9m {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.jshjxy-stat-label-3m8k2w {
    font-size: 16px;
    opacity: 0.8;
}

/* News Section */
.jshjxy-news-section-4k7m2w {
    padding: 100px 0;
    background: var(--bg-light);
}

.jshjxy-news-grid-9w3k5m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jshjxy-news-card-2m7k4w {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.jshjxy-news-card-2m7k4w:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.jshjxy-news-card-2m7k4w img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.jshjxy-news-content-5k8m3w {
    padding: 25px;
}

.jshjxy-news-date-7w2k4n {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.jshjxy-news-content-5k8m3w h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.jshjxy-news-content-5k8m3w p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.jshjxy-news-link-3m9k2w {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.jshjxy-news-link-3m9k2w:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.jshjxy-cta-section-8k5m3w {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

.jshjxy-cta-content-2w9k7m {
    color: var(--white);
}

.jshjxy-cta-content-2w9k7m h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.jshjxy-cta-content-2w9k7m p {
    font-size: 18px;
    margin-bottom: 30px;
}

.jshjxy-cta-buttons-5k3m8w {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.jshjxy-btn-white-9k2m7w {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.jshjxy-btn-white-9k2m7w:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* Footer */
.jshjxy-footer-3m8k5w {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.jshjxy-footer-grid-7w4k2m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.jshjxy-footer-col-9k3m5w h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.jshjxy-footer-col-9k3m5w h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
}

.jshjxy-footer-col-9k3m5w p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 15px;
}

.jshjxy-footer-col-9k3m5w ul {
    list-style: none;
}

.jshjxy-footer-col-9k3m5w ul li {
    margin-bottom: 10px;
}

.jshjxy-footer-col-9k3m5w ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.jshjxy-footer-col-9k3m5w ul li a:hover {
    color: var(--accent-color);
}

.jshjxy-footer-btn-4w7k3m {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 10px;
}

.jshjxy-footer-btn-4w7k3m:hover {
    background: var(--accent-color);
}

.jshjxy-footer-bottom-5m2k8w {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.jshjxy-footer-bottom-5m2k8w p {
    margin: 5px 0;
    font-size: 14px;
}

/* Page Banner */
.jshjxy-page-banner-7k3m9w {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: var(--white);
}

.jshjxy-page-banner-7k3m9w h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.jshjxy-page-banner-7k3m9w p {
    font-size: 18px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jshjxy-nav-7w5q3p {
        display: none;
    }

    .jshjxy-mobile-toggle-6h3w8k {
        display: flex;
    }

    .jshjxy-hero-title-9w4n2m {
        font-size: 32px;
    }

    .jshjxy-hero-subtitle-5k8m3w {
        font-size: 18px;
    }

    .jshjxy-hero-buttons-2m5k7w {
        flex-direction: column;
        align-items: center;
    }

    .jshjxy-intro-item-4n2w9k {
        grid-template-columns: 1fr;
    }

    .jshjxy-services-grid-4k7m2w,
    .jshjxy-cases-grid-9w4k2m,
    .jshjxy-advantages-grid-5m9k2w,
    .jshjxy-news-grid-9w3k5m {
        grid-template-columns: 1fr;
    }

    .jshjxy-cta-buttons-5k3m8w {
        flex-direction: column;
        align-items: center;
    }
}
