        /* 基础变量 */
        :root {
            --spacing-unit: 1rem;
            --border-radius: 8px;
            --shadow-light: 0 5px 15px rgba(0,0,0,0.05);
            --primary-color: #56b2ac;
            --secondary-color: #3CB371;
            --text-color: #333;
            --bg-color: #fff;
            --border-color: #eee;
            --nav-height: 80px;
            --hero-height: 100vh;
            --founder-img-max-height: 350px;
            --corner-img-width: 45%;
            --content-max-width: 1200px;
            --section-padding: 80px;
        }

        /* 基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		a{color:#000; text-decoration:none}

        html, body {
            height: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--bg-color);
            overflow-x: hidden;
        }

	.bigproduct {
    width: 100%;
    background-color: #fff;
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
	padding-top:40px;
    margin-top: -40px; /* 根据实际间距调整，例如 -4px */
}

/* 确保最后一个 .bigproduct 不应用负边距 */
.bigproduct:last-child {
    margin-bottom: 0;
}
        /* 视频背景 - 关键修正 */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
        }

        /* 确保所有内容区域都在视频背景之上 */
        section, div, header, footer {
            position: relative;
            z-index: 2;
        }
        
        /* 为视频背景容器的父元素设置相对定位，确保视频背景只覆盖hero区域 */
        body {
            position: relative;
        }
        
        /* 为内容区域添加背景色，确保在视频背景之上完全可见 */
        .bigproduct, .content-section, .founder-section, .promo-banner, .anxiety-container, .unique-advantages {
            background-color: #fff;
        }

        .background-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(86, 178, 172, 0.4) 0%,
                rgba(60, 179, 113, 0.3) 50%,
                rgba(0, 0, 0, 0.2) 100%
            );
        }

        /* 主内容区域 - 关键修正 */
        .main-content {
            position: relative;
            min-height: var(--hero-height);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            z-index: 1;
        }

        /* 内容容器 - 新增样式 */
        .content-container {
            max-width: var(--content-max-width);
            width: 100%;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }

        /* 所有内容区域 - 关键修正 */
        .content-section,
        .founder-section, 
        .promo-banner,
        .anxiety-container,
        .unique-advantages {
            position: relative;
            background-color: #fff;
            z-index: 2;
            padding: var(--section-padding) 0;
            width: 100%;
        }

        /* 确保内容区域有足够宽度 */
        .section-content {
            max-width: var(--content-max-width);
            width: 100%;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }

        /* 导航栏 */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(0);
            border-bottom: 1px solid transparent;
        }

        .header.scrolled {
            background: var(--primary-color);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --section-padding: 40px;
            }
        }
		
        .header.scrolled {
            background: var(--primary-color);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .header.scrolled {
            background: var(--primary-color);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--nav-height);
            transition: height 0.3s ease;
        }

        .header.scrolled .nav-container {
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .logo-img {
            width: 45px;
            height: 45px;
           
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
			
        }

        .header.scrolled .logo-img {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: bold;
            color: white;
            transition: all 0.3s ease;
        }

        .header.scrolled .logo-text {
            font-size: 24px;
            color: var(--primary-color);
        }

        /* 导航菜单 */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            position: relative;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: white;
            font-size: 16px;
            padding: 10px 0;
            display: block;
            position: relative;
            transition: all 0.3s ease;
        }

        .header.scrolled .nav-menu a {
            color: var(--text-color);
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* 二级菜单 */
        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 8px 8px;
            min-width: 200px;
            z-index: 1001;
        }

        .has-submenu:hover .submenu {
            display: block;
        }

        .submenu li {
            padding: 8px 20px;
        }

        .submenu a {
            color: var(--text-color);
            font-size: 14px;
            white-space: nowrap;
        }

        .submenu a:hover {
            background: rgba(86, 178, 172, 0.1);
            color: var(--primary-color);
        }

        /* 移动端菜单 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }

        /* 主内容区域 */
        .main-content {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        .hero-section {
            text-align: center;
            color: white;
            max-width: 900px;
            margin-top: -80px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 25px;
            text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.95;
            text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
        }

        .header.scrolled .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(86, 178, 172, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
        }

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

        .scroll-arrow {
            width: 35px;
            height: 35px;
            border-right: 3px solid white;
            border-bottom: 3px solid white;
            transform: rotate(45deg);
            opacity: 0.8;
        }

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

        /* 创始人说板块 - 优化图片布局 */
        .founder-section {
            padding: 80px 20px;
            background-color: #fff;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary-color);
        }

        .founder-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .founder-left {
            flex: 1;
            min-width: 280px;
            text-align: center;
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .founder-right {
            flex: 1;
            min-width: 280px;
            text-align: left;
            flex: 1;
        }

        .founder-subtitle {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #0ba79c;
        }

        .experience-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .experience-list li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .highlight {
            color: #e74c3c;
            font-weight: bold;
        }

        .founder-bottom {
            margin-top: 20px;
        }

        .founder-bottom p {
            font-size: 1.1rem;
            font-weight: bold;
        }

        .ok-img-container {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .ok-img {
            width: 100%;
            height: auto;
            max-height: var(--founder-img-max-height);
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* 网络推广热门推荐产品模块 */
        .promo-banner {
            position: relative;
            width: 100%;
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('') center/cover no-repeat;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 20px 30px;
            overflow: hidden;
            margin-bottom: -150px;
            z-index: 10;
        }

        .banner-content {
            max-width: 1200px;
            width: 100%;
            z-index: 2;
        }

        .main-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }

        .sub-title {
            font-size: 1.6rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .promo-highlight {
            color: #ffcc00;
            font-weight: bold;
        }

        .product-carousel {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
            position: relative;
        }

        .carousel-arrow {
            font-size: 2.2rem;
            cursor: pointer;
            padding: 12px;
            user-select: none;
            transition: all 0.3s;
            color: rgba(255, 255, 255, 0.8);
        }

        .carousel-arrow:hover {
            color: #ffcc00;
            transform: scale(1.2);
        }

        .product-list {
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 15px;
            max-width: 90%;
        }

        .product-card {
            min-width: 230px;
            height: 140px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .product-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }

        .product-card h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #ffcc00;
        }

        .product-card p {
            font-size: 0.85rem;
            text-align: center;
            opacity: 0.9;
			color:white;
        }

        /* 内容区域 - 添加左上角大图 */
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 20;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding-top: 80px;
        }

        /* 左上角大图 - 增大尺寸 */
        .corner-large-img {
            position: absolute;
            top: 20px;
            left: 20px;
            width: var(--corner-img-width); /* 使用变量控制宽度 */
            max-width: 600px; /* 增加最大宽度 */
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            z-index: 1;
            height: 300px; /* 固定高度 */
            object-fit: cover; /* 确保图片覆盖整个区域 */
        }

        .corner-large-img img {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* 特性容器 - 调整为单列布局 */
        .features-container {
            display: grid;
            grid-template-columns: 1fr; /* 单列布局 */
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
            position: relative;
            z-index: 2;
            padding-left: calc(var(--corner-img-width) + 40px); /* 根据大图宽度调整 */
        }

        .feature-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            font-size: 32px;
            color: #56b2ac;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            color: #3CB371;
            transform: scale(1.1);
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            line-height: 1.3;
            white-space: normal; /* 允许标题换行 */
        }

        .feature-subtitle {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 三张小图区域 */
        .small-images-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .small-image-card {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

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

        .small-image-card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            :root {
                --corner-img-width: 40%; /* 平板设备上稍微减小 */
            }
            
            .corner-large-img {
                max-width: 400px;
            }
            
            .features-container {
                padding-left: calc(var(--corner-img-width) + 30px);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active a {
                color: var(--text-color);
            }

            .nav-menu.active {
                display: block;
            }

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

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .founder-content {
                flex-direction: column;
                gap: 30px;
            }
            
            /* 手机端产品推荐优化 */
            .promo-banner {
                height: auto; /* 自适应高度 */
                min-height: 70vh; /* 最小高度 */
                padding: 40px 15px; /* 减小内边距 */
            }
            
            .main-title {
                font-size: 2rem; /* 减小标题字体 */
            }
            
            .sub-title {
                font-size: 1.2rem; /* 减小副标题字体 */
            }
            
            .product-card {
                min-width: 180px; /* 减小卡片宽度 */
                height: 120px; /* 减小卡片高度 */
                padding: 12px; /* 减小内边距 */
            }
            
            .product-card h3 {
                font-size: 1rem; /* 减小标题字体 */
            }
            
            .product-card p {
                font-size: 0.75rem; /* 减小描述字体 */
            }
            
            .carousel-arrow {
                font-size: 1.8rem; /* 减小箭头大小 */
                padding: 8px;
            }
            
            /* 特性项调整 */
            .features-container {
                grid-template-columns: 1fr;
                padding-left: 0; /* 隐藏大图后取消左边距 */
            }
            
            .feature-title {
                font-size: 1.1rem; /* 减小标题字体 */
            }
        }

        @media (max-width: 480px) {
            :root {
                --corner-img-width: 35%; /* 手机上进一步减小 */
            }
            
            .corner-large-img {
                max-width: 250px;
                height: 200px; /* 减小高度 */
            }
            
            .feature-card {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        /* 字体优化 */
        @font-face {
            font-family: 'Inter';
            src: 
                url('https://fonts.gstatic.com/s/inter/v9/Inter-Regular.woff2') format('woff2'),
                url('https://fonts.gstatic.com/s/inter/v9/Inter-Regular.woff') format('woff');
            font-display: swap;
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'Inter';
            src: 
                url('https://fonts.gstatic.com/s/inter/v9/Inter-Bold.woff2') format('woff2'),
                url('https://fonts.gstatic.com/s/inter/v9/Inter-Bold.woff') format('woff');
            font-display: swap;
            font-weight: 700;
            font-style: normal;
        }
		
		/* 修改后的图片容器样式 */
.corner-large-img {
	margin-top:90px;
    width: var(--corner-img-width);
    max-width: 800px;      /* 将最大宽度从600px增加到800px */
    height: auto;          /* 移除固定高度，允许图片按比例缩放 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1;
    object-fit: cover;
}
    /* 标题区域 */
        .anxiety-title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 16px;
            color: #2c3e50;
        }
        
        .anxiety-subtitle {
            font-size: 16px;
            color: #666;
            text-align: center;
            margin-bottom: 40px;
        }
        
        /* 内容布局 */
        .anxiety-content {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        
        .anxiety-left-section {
            flex: 1;
            min-width: 300px;
        }
        
        .anxiety-right-section {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        
        /* 时间陷阱模块 */
        .anxiety-time-trap {
            background: linear-gradient(135deg, #00c07f, #009966);
            color: #fff;
            padding: 30px;
            border-radius: 12px;
            margin-top: 24px;
            box-shadow: 0 8px 25px rgba(0, 192, 127, 0.3);
        }
        
        .anxiety-time-trap h2 {
            font-size: 22px;
            margin-bottom: 12px;
        }
        
        .anxiety-time-trap p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        /* 卡片样式 */
        .anxiety-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #00c07f;
        }
        
        .anxiety-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .anxiety-card-number {
            background-color: #eaf5f0;
            color: #00c07f;
            font-size: 14px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 16px;
        }
        
        .anxiety-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #2c3e50;
        }
        
        .anxiety-card p {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }
        
        /* 图片样式 */
        .anxiety-image {
            width: 100%;
            max-width: 360px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .anxiety-content {
                flex-direction: column;
            }
            
            .anxiety-right-section {
                grid-template-columns: 1fr;
            }
            
            .anxiety-title {
                font-size: 24px;
            }
            
            .anxiety-time-trap {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .anxiety-body {
                padding: 10px;
            }
            
            .anxiety-card {
                padding: 20px;
            }
        }
		  .anxiety-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .anxiety-title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 16px;
            color: #2c3e50;
        }
        
        .anxiety-subtitle {
            font-size: 16px;
            color: #666;
            text-align: center;
            margin-bottom: 40px;
        }
        
        /* 主内容区域 */
        .anxiety-content {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        
        /* 左侧时间陷阱区域 */
        .anxiety-left-section {
            flex: 1;
            min-width: 300px;
        }
        
        .anxiety-time-trap {
            background: linear-gradient(135deg, #00c07f, #00a86b);
            color: #fff;
            padding: 24px;
            border-radius: 12px;
            margin-top: 24px;
            box-shadow: 0 8px 20px rgba(0, 192, 127, 0.3);
        }
        
        .anxiety-time-trap h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        
        .anxiety-time-trap p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* 右侧焦虑卡片区域 */
        .anxiety-right-section {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            min-width: 300px;
        }
        
        /* 焦虑卡片样式 */
        .anxiety-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .anxiety-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        
        .anxiety-card-number {
            background-color: #eaf5f0;
            color: #00c07f;
            font-size: 14px;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 16px;
        }
        
        .anxiety-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #2c3e50;
        }
        
        .anxiety-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .anxiety-right-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .anxiety-content {
                flex-direction: column;
            }
            
            .anxiety-right-section {
                grid-template-columns: 1fr;
            }
            
            .anxiety-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .anxiety-container {
                padding: 0 15px;
            }
            
            .anxiety-card {
                padding: 20px;
            }
        }
		
		
   /* 优势模块整体容器 */
        .unique-advantages {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
            font-family: Arial, sans-serif;
        }

        /* 主标题 */
        .ua-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #2c3e50;
        }

        /* 副标题 */
        .ua-subtitle {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 卡片容器：Grid布局实现每行三个卡片 */
        .ua-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        /* 单张优势卡片 */
        .ua-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 12px;
            padding: 30px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
        }

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

        /* 卡片图标 - 使用Font Awesome */
        .ua-icon {
            font-size: 48px;
            color: #3498db;
            margin-bottom: 20px;
            display: block;
        }

        /* 卡片标题 */
        .ua-card-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        /* 卡片描述 */
        .ua-card-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        /* 底部区域 */
        .ua-footer {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eaeaea;
        }

        /* 底部标语 */
        .ua-slogan {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        /* 联系方式 */
        .ua-contact {
            font-size: 16px;
            color: #666;
        }

        /* 电话链接样式 */
        .ua-contact a {
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
        }

        .ua-contact a:hover {
            text-decoration: underline;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .ua-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .ua-cards {
                grid-template-columns: 1fr;
            }
            
            .ua-title {
                font-size: 28px;
            }
            
            .ua-subtitle {
                font-size: 16px;
            }
        }
		
	
body {
    background-color: #fff; /* 明确的白色背景 */
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}


   .footer {
            width: 100%;
            padding: 20px 0;
            background-color: #008080;
        }

        .footer-container {
            width: 90%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }

        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
        }

        .footer-section ul li a:hover {
            text-decoration: underline;
        }
		
        .contact-info {
            text-align: right;
        }

        .contact-info p {
            margin: 5px 0;
        }

        .qr-code {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .qr-code img {
            width: 100px;
            height: 100px;
            margin-left: 10px;
        }

        .copyright {
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
            font-size: 14px;
        }
		
		.news-card:hover *{ background-color:#56b2ac;color:#fff}
		
		