@font-face {
    font-family: 'eyougeo-iconfont';
    src: url('/__home_static/fonts/eyougeo-iconfont.woff2?v=20260617-clone1') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body.template-eyou-clone {
    --primary: #FF6600;
    --primary-light: #FF8533;
    --primary-dark: #E65C00;
    --primary-glow: rgba(255, 102, 0, 0.4);
    --dark-bg: #0D1117;
    --dark-card: #161B22;
    --dark-border: #30363D;
    --text-primary: #F0F6FC;
    --text-secondary: #8B949E;
    --text-dark: #1F2328;
    --white: #FFFFFF;
    --light-bg: #F6F8FA;
    --success: #3FB950;
    --warning: #D29922;
    --danger: #F85149;
}body.template-eyou-clone *, body.template-eyou-clone *::before, body.template-eyou-clone *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}body.template-eyou-clone {
    scroll-behavior: smooth;
}body.template-eyou-clone {
    font-family:  "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}body.template-eyou-clone a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}body.template-eyou-clone ul {
    list-style: none;
}body.template-eyou-clone img {
    max-width: 100%;
}body.template-eyou-clone .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}body.template-eyou-clone .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    height: 70px;
}body.template-eyou-clone .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}body.template-eyou-clone .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}body.template-eyou-clone .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
}body.template-eyou-clone .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}body.template-eyou-clone .logo-geo {
    color: var(--primary);
    margin-left: 2px;
}body.template-eyou-clone .nav {
    display: flex;
    gap: 32px;
}body.template-eyou-clone .nav a {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}body.template-eyou-clone .nav a:hover {
    color: var(--text-primary);
}body.template-eyou-clone .nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}body.template-eyou-clone .nav a:hover::after {
    width: 100%;
}body.template-eyou-clone .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}body.template-eyou-clone .btn-demo {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}body.template-eyou-clone .btn-demo:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}body.template-eyou-clone .btn-back {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 14px;
}body.template-eyou-clone .btn-back:hover {
    color: var(--text-primary);
}body.template-eyou-clone .hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1A1F2E 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}body.template-eyou-clone .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}body.template-eyou-clone .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 102, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}body.template-eyou-clone .hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(80px);
}body.template-eyou-clone .hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}body.template-eyou-clone .hero-content {
    max-width: 800px;
    margin: 0 auto;
}body.template-eyou-clone .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 32px;
}body.template-eyou-clone .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}body.template-eyou-clone .hero-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}body.template-eyou-clone .hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}body.template-eyou-clone .hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}body.template-eyou-clone .hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}body.template-eyou-clone .hero-demo-info {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 60px;
}body.template-eyou-clone .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}body.template-eyou-clone .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}body.template-eyou-clone .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}body.template-eyou-clone .btn-glow {
    flex-direction: column;
    padding: 16px 40px;
}body.template-eyou-clone .btn-glow .btn-price {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}body.template-eyou-clone .btn-outline {
    background: transparent;
    color: #e7e7e7;
    border-color: var(--dark-border);
}body.template-eyou-clone .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}body.template-eyou-clone .btn-icon {
    font-size: 12px;
}body.template-eyou-clone .btn-icon.iconfont {
    font-size: 14px;
}body.template-eyou-clone .btn-block {
    display: block;
    width: 100%;
}body.template-eyou-clone .btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}body.template-eyou-clone .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 32px 48px;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}body.template-eyou-clone .stat-item {
    text-align: center;
}body.template-eyou-clone .stat-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}body.template-eyou-clone .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}body.template-eyou-clone .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}body.template-eyou-clone .section {
    padding: 60px 0;
}body.template-eyou-clone .section:nth-child(even) {
    background: var(--light-bg);
}body.template-eyou-clone .section-header {
    text-align: center;
    margin-bottom: 60px;
}body.template-eyou-clone .section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}body.template-eyou-clone .section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}body.template-eyou-clone .section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}body.template-eyou-clone .trend-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin: 0 auto;
}body.template-eyou-clone .trend-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}body.template-eyou-clone .trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}body.template-eyou-clone .trend-icon {
    font-size: 40px;
    margin-bottom: 20px;
}body.template-eyou-clone .trend-icon .iconfont {
    font-size: 40px;
    color: var(--primary);
}body.template-eyou-clone .trend-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}body.template-eyou-clone .trend-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}body.template-eyou-clone .trend-list {
    margin-top: 16px;
}body.template-eyou-clone .trend-list li {
    padding: 10px 0;
    font-size: 15px;
    color: #4B5563;
    border-bottom: 1px dashed #E5E7EB;
    position: relative;
    padding-left: 24px;
}body.template-eyou-clone .trend-list li::before {
    content: '"';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}body.template-eyou-clone .trend-card-warning {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-color: rgba(255, 102, 0, 0.2);
}body.template-eyou-clone .trend-highlight {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}body.template-eyou-clone .trend-highlight span {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}body.template-eyou-clone .section-pain {
    background: var(--white) !important;
}body.template-eyou-clone .pain-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}body.template-eyou-clone .pain-card {
    background: var(--light-bg);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}body.template-eyou-clone .pain-card:hover {
    border-color: var(--primary);
    background: #FFF7ED;
}body.template-eyou-clone .pain-icon {
    font-size: 32px;
    margin-bottom: 12px;
}body.template-eyou-clone .pain-icon .iconfont {
    font-size: 36px;
    color: var(--primary);
}body.template-eyou-clone .pain-card p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
}body.template-eyou-clone .pain-solution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--dark-bg), #1A1F2E);
    border-radius: 16px;
    padding: 40px 48px;
}body.template-eyou-clone .solution-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}body.template-eyou-clone .solution-content p {
    font-size: 16px;
    color: var(--text-secondary);
}body.template-eyou-clone .geo-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}body.template-eyou-clone .geo-item {
    flex: 1;
    padding: 32px;
    border-radius: 16px;
    background: var(--light-bg);
    border: 2px solid #E5E7EB;
}body.template-eyou-clone .geo-old {
    opacity: 0.7;
}body.template-eyou-clone .geo-new {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.15);
}body.template-eyou-clone .geo-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}body.template-eyou-clone .geo-new .geo-label {
    color: var(--primary);
}body.template-eyou-clone .geo-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}body.template-eyou-clone .geo-step {
    padding: 8px 14px;
    background: var(--white);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
}body.template-eyou-clone .geo-new .geo-step {
    background: var(--white);
}body.template-eyou-clone .geo-step.highlight {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}body.template-eyou-clone .geo-arrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}body.template-eyou-clone .geo-vs {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-secondary);
    padding: 16px;
}body.template-eyou-clone .geo-summary {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin: 0 auto;
}body.template-eyou-clone .geo-summary strong {
    color: var(--primary);
    font-weight: 700;
}body.template-eyou-clone .flow-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}body.template-eyou-clone .flow-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}body.template-eyou-clone .flow-step {
    position: relative;
    text-align: center;
}body.template-eyou-clone .flow-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px var(--primary-glow);
}body.template-eyou-clone .flow-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.3s ease;
}body.template-eyou-clone .flow-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.1);
}body.template-eyou-clone .flow-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}body.template-eyou-clone .flow-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}body.template-eyou-clone .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}body.template-eyou-clone .feature-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}body.template-eyou-clone .feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.1);
}body.template-eyou-clone .feature-icon {
    font-size: 36px;
    flex-shrink: 0;
}body.template-eyou-clone .feature-icon .iconfont {
    font-size: 40px;
    color: var(--primary);
}body.template-eyou-clone .feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}body.template-eyou-clone .feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}body.template-eyou-clone .compare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}body.template-eyou-clone .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}body.template-eyou-clone .compare-table th, body.template-eyou-clone .compare-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}body.template-eyou-clone .compare-table thead th {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}body.template-eyou-clone .compare-table thead th.highlight-col {
    background: var(--primary);
    position: relative;
}body.template-eyou-clone .col-badge {
    position: absolute;
    right: 16px;
    background: var(--white);
    color: var(--primary);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}body.template-eyou-clone .compare-table td.highlight-col {
    background: #FFF7ED;
}body.template-eyou-clone .compare-table tbody tr:hover {
    background: var(--light-bg);
}body.template-eyou-clone .compare-table .check {
    color: var(--success);
    font-weight: 700;
    margin-right: 8px;
}body.template-eyou-clone .compare-table .cross {
    color: var(--danger);
    font-weight: 700;
    margin-right: 8px;
    opacity: 0.6;
}body.template-eyou-clone .section-pricing {
    background: var(--light-bg) !important;
}body.template-eyou-clone .pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 24px;
}body.template-eyou-clone .pricing-card {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}body.template-eyou-clone .pricing-card:hover {
    transform: translateY(-4px);
}body.template-eyou-clone .pricing-card-hot {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.15);
}body.template-eyou-clone .pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}body.template-eyou-clone .pricing-badge .iconfont {
    font-size: 14px;
    margin-right: 4px;
}body.template-eyou-clone .pricing-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}body.template-eyou-clone .pricing-header p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}body.template-eyou-clone .pricing-price {
    margin-bottom: 8px;
}body.template-eyou-clone .price-symbol {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    vertical-align: top;
}body.template-eyou-clone .price-num {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}body.template-eyou-clone .price-original {
    font-size: 16px;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-left: 8px;
}body.template-eyou-clone .pricing-tag {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 24px;
}body.template-eyou-clone .pricing-features {
    text-align: left;
    margin-bottom: 24px;
}body.template-eyou-clone .pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid #F3F4F6;
    padding-left: 28px;
    position: relative;
}body.template-eyou-clone .pricing-features li.yes::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}body.template-eyou-clone .pricing-features li.no {
    color: #9CA3AF;
}body.template-eyou-clone .pricing-features li.no::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #D1D5DB;
}body.template-eyou-clone .coming-soon {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    margin-left: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    vertical-align: middle;
}body.template-eyou-clone .pricing-renew {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}body.template-eyou-clone .pricing-upgrade {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}body.template-eyou-clone .faq-list {
    margin: 0 auto;
}body.template-eyou-clone .faq-item {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}body.template-eyou-clone .faq-item:hover {
    border-color: var(--primary);
}body.template-eyou-clone .faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}body.template-eyou-clone .faq-q::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}body.template-eyou-clone .faq-item.active .faq-q::after {
    transform: rotate(45deg);
}body.template-eyou-clone .faq-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}body.template-eyou-clone .faq-a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 24px 0 68px;
}body.template-eyou-clone .faq-item.active .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}body.template-eyou-clone .section-cta {
    background: linear-gradient(135deg, var(--dark-bg), #1A1F2E) !important;
    padding: 100px 0;
}body.template-eyou-clone .cta-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}body.template-eyou-clone .cta-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}body.template-eyou-clone .cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}body.template-eyou-clone .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-bottom: 32px;
}body.template-eyou-clone .btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}body.template-eyou-clone .btn-white:hover {
    background: #FFF7ED;
    transform: translateY(-2px);
}body.template-eyou-clone .btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}body.template-eyou-clone .btn-white-outline:hover {
    border-color: var(--white);
}body.template-eyou-clone .cta-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}body.template-eyou-clone .cta-contact {
    font-size: 15px;
    color: var(--text-secondary);
}body.template-eyou-clone .cta-contact strong {
    color: var(--primary);
    font-weight: 700;
}body.template-eyou-clone .cta-note {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 8px;
}body.template-eyou-clone .footer {
    background: var(--dark-bg);
    color: var(--text-secondary);
    padding: 48px 0 24px;
    font-size: 14px;
}body.template-eyou-clone .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
}body.template-eyou-clone .footer-brand .logo {
    margin-bottom: 8px;
}body.template-eyou-clone .footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
}body.template-eyou-clone .footer-links {
    display: flex;
    gap: 24px;
}body.template-eyou-clone .footer-links a:hover {
    color: var(--primary);
}body.template-eyou-clone .footer-bottom {
    text-align: left;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
}body.template-eyou-clone .footer-bottom a {
    color: var(--text-secondary);
}body.template-eyou-clone .footer-bottom a:hover {
    color: var(--primary);
}body.template-eyou-clone .float-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}body.template-eyou-clone .float-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}body.template-eyou-clone .float-btn-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 30px var(--primary-glow);
    transition: all 0.3s ease;
}body.template-eyou-clone .float-btn-trigger:hover {
    transform: scale(1.05);
}body.template-eyou-clone .float-icon {
    font-size: 18px;
}body.template-eyou-clone .float-icon .iconfont {
    font-size: 20px;
}body.template-eyou-clone .float-btn-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 200px;
}body.template-eyou-clone .float-btn-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}body.template-eyou-clone .float-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
}body.template-eyou-clone .float-option:last-child {
    border-bottom: none;
}body.template-eyou-clone .float-option:hover {
    background: #FFF7ED;
}body.template-eyou-clone .float-option-name {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}body.template-eyou-clone .float-option-price {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}body.template-eyou-clone .float-option-hot {
    background: #FFF7ED;
}@media (max-width: 1024px) {
body.template-eyou-clone .nav {
        display: none;
    }body.template-eyou-clone .hero-title {
        font-size: 42px;
    }body.template-eyou-clone .hero-stats {
        gap: 24px;
        padding: 24px 32px;
    }body.template-eyou-clone .stat-num {
        font-size: 26px;
    }body.template-eyou-clone .geo-compare {
        flex-direction: column;
    }body.template-eyou-clone .geo-item {
        max-width: 100%;
    }body.template-eyou-clone .geo-vs {
        padding: 8px;
    }

}@media (max-width: 768px) {
body.template-eyou-clone .header-inner {
        padding: 0 16px;
    }body.template-eyou-clone .hero {
        padding: 100px 0 60px;
    }body.template-eyou-clone .hero-title {
        font-size: 32px;
    }body.template-eyou-clone .hero-desc {
        font-size: 16px;
    }body.template-eyou-clone .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }body.template-eyou-clone .stat-divider {
        display: none;
    }body.template-eyou-clone .stat-item {
        width: 45%;
    }body.template-eyou-clone .section {
        padding: 60px 0;
    }body.template-eyou-clone .section-title {
        font-size: 28px;
    }body.template-eyou-clone .trend-grid {
        grid-template-columns: 1fr;
    }body.template-eyou-clone .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }body.template-eyou-clone .flow-timeline {
        grid-template-columns: repeat(2, 1fr);
    }body.template-eyou-clone .flow-line {
        display: none;
    }body.template-eyou-clone .features-grid {
        grid-template-columns: 1fr;
    }body.template-eyou-clone .feature-card {
        flex-direction: column;
        text-align: center;
    }body.template-eyou-clone .pricing-cards {
        grid-template-columns: 1fr;
    }body.template-eyou-clone .cta-title {
        font-size: 28px;
    }body.template-eyou-clone .cta-actions {
        flex-direction: column;
        align-items: center;
    }body.template-eyou-clone .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }body.template-eyou-clone .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }body.template-eyou-clone .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }body.template-eyou-clone .float-btn {
        bottom: 20px;
        right: 20px;
    }

}@media (max-width: 480px) {
body.template-eyou-clone .hero-title {
        font-size: 26px;
    }body.template-eyou-clone .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }body.template-eyou-clone .hero-actions {
        flex-direction: column;
        align-items: center;
    }body.template-eyou-clone .hero-actions .btn {
        width: 100%;
    }body.template-eyou-clone .pain-grid {
        grid-template-columns: 1fr;
    }body.template-eyou-clone .pain-solution {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
    }body.template-eyou-clone .flow-timeline {
        grid-template-columns: 1fr;
    }body.template-eyou-clone .cta-badges {
        flex-direction: column;
        gap: 8px;
    }body.template-eyou-clone .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

}body.template-eyou-clone .buy-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}body.template-eyou-clone .buy-modal.show {
    opacity: 1;
    visibility: visible;
}body.template-eyou-clone .buy-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}body.template-eyou-clone .buy-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}body.template-eyou-clone .buy-modal.show .buy-modal-content {
    transform: scale(1) translateY(0);
}body.template-eyou-clone .buy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}body.template-eyou-clone .buy-modal-close:hover {
    background: #E5E7EB;
    transform: rotate(90deg);
}body.template-eyou-clone .buy-modal-close .iconfont {
    font-size: 18px;
    color: var(--text-secondary);
}body.template-eyou-clone .buy-modal-header {
    text-align: center;
    margin-bottom: 32px;
}body.template-eyou-clone .buy-modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}body.template-eyou-clone .buy-modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}body.template-eyou-clone .buy-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}body.template-eyou-clone .buy-modal-qrcode {
    text-align: center;
}body.template-eyou-clone .buy-modal-qrcode img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    border: 2px solid var(--light-bg);
    margin-bottom: 12px;
}body.template-eyou-clone .buy-modal-qrcode p {
    font-size: 14px;
    color: var(--text-secondary);
}body.template-eyou-clone .buy-modal-divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}body.template-eyou-clone .buy-modal-divider::before, body.template-eyou-clone .buy-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}body.template-eyou-clone .buy-modal-divider span {
    font-size: 14px;
    color: var(--text-secondary);
}body.template-eyou-clone .buy-modal-qq {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 12px;
}body.template-eyou-clone .qq-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #12B7F5, #0D9FD9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}body.template-eyou-clone .qq-icon .iconfont {
    font-size: 28px;
    color: var(--white);
}body.template-eyou-clone .qq-info {
    flex: 1;
}body.template-eyou-clone .qq-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}body.template-eyou-clone .qq-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}body.template-eyou-clone .qq-copy {
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}body.template-eyou-clone .qq-copy:hover {
    background: var(--primary-light);
}body.template-eyou-clone .buy-modal-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}body.template-eyou-clone .buy-modal-footer p {
    font-size: 13px;
    color: var(--text-secondary);
}body.template-eyou-clone .ey-modal-body {
    padding: 24px;
}body.template-eyou-clone .comp-wxpay {
    text-align: center;
    padding-bottom: 50px;
}body.template-eyou-clone .comp-wxpay-order {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-left: 200px;
    color: #595959;
    border-bottom: 1px solid #f3f3f3;
}body.template-eyou-clone .comp-wxpay-order-title {
    padding-bottom: 12px;
}body.template-eyou-clone .comp-wxpay-order-desc-value {
    color: #00c800;
    font-size: 20px;
}body.template-eyou-clone .comp-wxpay-order-desc-label, body.template-eyou-clone .comp-wxpay-order-title {
    font-weight: 600;
}body.template-eyou-clone .ey-loading {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 28px;
    min-height: 14px;
}body.template-eyou-clone .ey-loading-content {
    flex: 1;
    min-height: 0;
}body.template-eyou-clone .ey-loading:not(.ey-loading-loading)>.ey-loading-content {
    transition: visibility 0s,opacity .3s;
}body.template-eyou-clone .comp-wxpay-qrcode {
    display: flex;
    padding-top: 20px;
    padding-left: 200px;
}body.template-eyou-clone .comp-wxpay-qrcode-content-wrap {
    margin-bottom: 5px;
}body.template-eyou-clone .comp-wxpay-qrcode-content-notice {
    line-height: 30px;
    font-size: 12px;
    color: #fff;
    background-color: #00c800;
    margin-top: 10px;
}body.template-eyou-clone .comp-wxpay-qrcode-tip {
    margin-left: 40px;
    margin-top: -10px;
}body.template-eyou-clone .comp-wxpay-qrcode-tip>img {
    width: 200px;
    height: 276px;
}body.template-eyou-clone .comp-toaster {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20230516;
    width: 100%;
}body.template-eyou-clone .comp-toaster-notice {
    height: 59px;
    line-height: 59px;
    text-align: center;
    background: #fdecec;
    color: red;
}body.template-eyou-clone .pricing-cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}@media (max-width: 1200px) {
body.template-eyou-clone .pricing-cards-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

}@media (max-width: 768px) {
body.template-eyou-clone .pricing-cards-4 {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

}body.template-eyou-clone .pricing-price .price-unit {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}body.template-eyou-clone .pricing-card-flagship {
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #d4a44c, #f7d774, #d4a44c);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 32px rgba(212, 164, 76, 0.18);
}body.template-eyou-clone .pricing-card-flagship:hover {
    box-shadow: 0 12px 40px rgba(212, 164, 76, 0.28);
    transform: translateY(-4px);
}body.template-eyou-clone .pricing-badge-flagship {
    background: linear-gradient(135deg, #d4a44c, #f7d774) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}body.template-eyou-clone .pricing-badge-flagship .iconfont {
    font-size: 14px;
}body.template-eyou-clone .pricing-card-flagship .pricing-price .price-num {
    color: #b8860b;
}body.template-eyou-clone .pricing-card-flagship .pricing-price .price-symbol {
    color: #b8860b;
}body.template-eyou-clone .btn-flagship {
    background: linear-gradient(135deg, #d4a44c, #c49a3c);
    color: #fff !important;
    border: none;
    transition: all 0.3s;
}body.template-eyou-clone .btn-flagship:hover {
    background: linear-gradient(135deg, #c49a3c, #b8860b);
    box-shadow: 0 4px 16px rgba(212, 164, 76, 0.4);
}body.template-eyou-clone .pricing-card-saas {
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #667eea, #764ba2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.18);
}body.template-eyou-clone .pricing-card-saas:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.28);
    transform: translateY(-4px);
}body.template-eyou-clone .pricing-badge-saas {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}body.template-eyou-clone .pricing-card-saas .pricing-price .price-num {
    color: #667eea;
}body.template-eyou-clone .pricing-card-saas .pricing-price .price-symbol {
    color: #667eea;
}body.template-eyou-clone .btn-saas {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff !important;
    border: none;
    transition: all 0.3s;
}body.template-eyou-clone .btn-saas:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}body.template-eyou-clone .pricing-card-unlimited {
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #f093fb, #f5576c);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 32px rgba(240, 147, 251, 0.18);
}body.template-eyou-clone .pricing-card-unlimited:hover {
    box-shadow: 0 12px 40px rgba(240, 147, 251, 0.28);
    transform: translateY(-4px);
}body.template-eyou-clone .pricing-badge-unlimited {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}body.template-eyou-clone .pricing-card-unlimited .pricing-price .price-num {
    color: #f5576c;
}body.template-eyou-clone .pricing-card-unlimited .pricing-price .price-symbol {
    color: #f5576c;
}body.template-eyou-clone .btn-unlimited {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff !important;
    border: none;
    transition: all 0.3s;
}body.template-eyou-clone .btn-unlimited:hover {
    background: linear-gradient(135deg, #f5576c, #f093fb);
    box-shadow: 0 4px 16px rgba(240, 147, 251, 0.4);
}body.template-eyou-clone .float-option-flagship {
    background: linear-gradient(135deg, rgba(212,164,76,0.08), rgba(247,215,116,0.08)) !important;
    border-left: 3px solid #d4a44c !important;
}body.template-eyou-clone .float-option-flagship .float-option-name {
    color: #b8860b;
    font-weight: 600;
}body.template-eyou-clone .float-option-flagship .float-option-price {
    color: #b8860b;
    font-weight: 700;
}body.template-eyou-clone .float-option-flagship .iconfont {
    font-size: 12px;
    color: #d4a44c;
}body.template-eyou-clone .btn-flagship-cta {
    border-color: rgba(212,164,76,0.6) !important;
    color: #fff !important;
    background: linear-gradient(135deg, rgba(212,164,76,0.25), rgba(247,215,116,0.15));
}body.template-eyou-clone .btn-flagship-cta:hover {
    background: linear-gradient(135deg, rgba(212,164,76,0.4), rgba(247,215,116,0.25));
    border-color: #d4a44c !important;
}body.template-eyou-clone .pricing-card {
    overflow: visible !important;
}body.template-eyou-clone .pricing-card:hover, body.template-eyou-clone .pricing-card:focus-within {
    z-index: 2;
}body.template-eyou-clone .feature-tip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}body.template-eyou-clone .feature-tip-trigger {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 164, 76, 0.16);
    color: #b8860b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}body.template-eyou-clone .feature-tip-trigger:hover, body.template-eyou-clone .feature-tip-trigger:focus-visible, body.template-eyou-clone .feature-tip-wrap.is-open .feature-tip-trigger {
    background: #d4a44c;
    color: #fff;
    outline: none;
}body.template-eyou-clone .feature-tip-muted .feature-tip-trigger {
    background: rgba(156, 163, 175, 0.18);
    color: #9CA3AF;
}body.template-eyou-clone .feature-tip-muted .feature-tip-trigger:hover, body.template-eyou-clone .feature-tip-muted .feature-tip-trigger:focus-visible, body.template-eyou-clone .feature-tip-muted.is-open .feature-tip-trigger {
    background: #9CA3AF;
    color: #fff;
}body.template-eyou-clone .feature-tip-popover {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    top: auto;
    z-index: 9999;
    width: min(280px, calc(100vw - 48px));
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(24, 24, 27, 0.96);
    color: #fff;
    font-size: 13px;
    line-height: 1.65;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}body.template-eyou-clone .feature-tip-popover::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 18px;
    width: 12px;
    height: 12px;
    background: rgba(24, 24, 27, 0.96);
    transform: rotate(45deg);
}body.template-eyou-clone .feature-tip-wrap:hover .feature-tip-popover, body.template-eyou-clone .feature-tip-wrap:focus-within .feature-tip-popover, body.template-eyou-clone .feature-tip-wrap.is-open .feature-tip-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}body.template-eyou-clone .pricing-subaccount-note {
    max-width: 860px;
    margin: 14px auto 0;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(212, 164, 76, 0.1);
    color: #7a5a14;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}@media (max-width: 768px) {
body.template-eyou-clone .feature-tip-popover {
        left: -8px;
    }body.template-eyou-clone .feature-tip-popover::before {
        left: 26px;
    }body.template-eyou-clone .pricing-subaccount-note {
        margin-top: 12px;
        font-size: 13px;
        text-align: left;
    }

}  
body.template-eyou-clone .ey-VIP:before { content: '\e756'; }
body.template-eyou-clone .ey-baidu:before { content: "\e6b1"; }
body.template-eyou-clone .ey-bianji:before { content: "\e7a1"; }
body.template-eyou-clone .ey-biaoqian:before { content: "\e6dc"; }
body.template-eyou-clone .ey-bofang:before { content: "\e66c"; }
body.template-eyou-clone .ey-fahuo:before { content: "\e60c"; }
body.template-eyou-clone .ey-gantanhao-xianxingyuankuang:before { content: "\e8ec"; }
body.template-eyou-clone .ey-gouwuche:before { content: "\e735"; }
body.template-eyou-clone .ey-qianbao:before { content: "\e747"; }
body.template-eyou-clone .ey-shouquan:before { content: "\e68d"; }
body.template-eyou-clone .ey-sousuo:before { content: "\e622"; }
body.template-eyou-clone .ey-wenda:before { content: "\e703"; }
body.template-eyou-clone .ey-wenhao:before { content: "\e692"; }
body.template-eyou-clone .ey-xiajiang:before { content: "\e676"; }
body.template-eyou-clone .ey-yanjing:before { content: "\e6cc"; }
body.template-eyou-clone .ey-yuebao:before { content: "\e6b2"; }

body.template-eyou-clone {
    min-height: 100vh;
}
body.template-eyou-clone .iconfont {
    font-family: "eyougeo-iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.template-eyou-clone .logo-icon {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
body.template-eyou-clone .btn-back[href="/"]::after {
    content: "";
}
body.template-eyou-clone .footer {
    background: #0D1117;
    color: var(--text-secondary);
    padding: 48px 0 28px;
}
body.template-eyou-clone .footer a:hover {
    color: var(--primary);
}
body.template-eyou-clone .float-btn-panel a,
body.template-eyou-clone .pricing-card a,
body.template-eyou-clone .cta-actions a {
    cursor: pointer;
}
body.template-eyou-clone .pain-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
body.template-eyou-clone .pain-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}
body.template-eyou-clone .pain-icon img,
body.template-eyou-clone .feature-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
body.template-eyou-clone .pain-icon svg,
body.template-eyou-clone .feature-icon svg {
    width: 42px;
    height: 42px;
    color: var(--primary);
    fill: currentColor;
}
body.template-eyou-clone .pricing-cards-dynamic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1120px;
    gap: 24px;
}
body.template-eyou-clone .pricing-cards-dynamic .pricing-card {
    display: flex;
    flex-direction: column;
}
body.template-eyou-clone .pricing-cards-dynamic .pricing-features {
    flex: 1;
}
body.template-eyou-clone .pricing-price .price-text {
    display: inline-block;
    max-width: 100%;
    font-size: 36px;
    overflow-wrap: anywhere;
}
body.template-eyou-clone .tc-usecase-grid,
body.template-eyou-clone .tc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
body.template-eyou-clone .tc-testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 240px;
}
body.template-eyou-clone .tc-testimonial-content {
    flex: 1;
    margin-bottom: 24px !important;
    color: #4B5563 !important;
}
body.template-eyou-clone .section-apply {
    background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}
body.template-eyou-clone .tc-apply-form {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 36px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
body.template-eyou-clone .tc-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
body.template-eyou-clone .tc-form-group {
    margin-bottom: 18px;
}
body.template-eyou-clone .tc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}
body.template-eyou-clone .tc-required {
    margin-left: 4px;
    color: #EF4444;
}
body.template-eyou-clone .tc-form-input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    outline: none;
    color: var(--text-dark);
    background: #fff;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.template-eyou-clone .tc-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.14);
}
body.template-eyou-clone .tc-form-input.error {
    border-color: #EF4444;
}
body.template-eyou-clone .tc-form-textarea {
    min-height: 112px;
    padding-top: 12px;
    resize: vertical;
}
body.template-eyou-clone .tc-form-error {
    display: none;
    margin-top: 6px;
    font-size: 12px;
    color: #EF4444;
}
body.template-eyou-clone .tc-form-error.show {
    display: block;
}
body.template-eyou-clone .tc-form-message {
    display: none;
    margin: 4px 0 18px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}
body.template-eyou-clone .tc-form-message.success {
    display: block;
    color: #047857;
    background: #ECFDF5;
}
body.template-eyou-clone .tc-form-message.fail {
    display: block;
    color: #B91C1C;
    background: #FEF2F2;
}
body.template-eyou-clone .tc-form-actions {
    text-align: center;
}
body.template-eyou-clone .tc-form-actions .btn[disabled] {
    cursor: not-allowed;
    opacity: 0.65;
}

/* Tianchuang performance guard: keep the look, avoid continuous GPU work. */
body.template-eyou-clone .hero-grid {
    animation: none;
    transform: none;
}
body.template-eyou-clone .badge-dot {
    animation: none;
}
body.template-eyou-clone .hero-glow {
    filter: none;
    opacity: 0.24;
}
body.template-eyou-clone .header,
body.template-eyou-clone .hero-stats,
body.template-eyou-clone .buy-modal-overlay {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    body.template-eyou-clone {
        scroll-behavior: auto;
    }
    body.template-eyou-clone .hero-glow {
        display: none;
    }
    body.template-eyou-clone .trend-card,
    body.template-eyou-clone .feature-card,
    body.template-eyou-clone .pricing-card,
    body.template-eyou-clone .case-card,
    body.template-eyou-clone .float-btn-trigger {
        box-shadow: none;
    }
    body.template-eyou-clone .trend-card,
    body.template-eyou-clone .feature-card,
    body.template-eyou-clone .pricing-card,
    body.template-eyou-clone .case-card,
    body.template-eyou-clone .float-btn,
    body.template-eyou-clone .float-btn-trigger,
    body.template-eyou-clone .float-btn-panel {
        transition-duration: 0.12s;
    }
}
@media (max-width: 768px) {
    body.template-eyou-clone .header-actions {
        display: none;
    }
    body.template-eyou-clone .nav {
        display: none;
    }
    body.template-eyou-clone .hero-title {
        font-size: 42px;
    }
    body.template-eyou-clone .hero-stats {
        padding: 24px;
        gap: 18px;
        flex-wrap: wrap;
    }
    body.template-eyou-clone .stat-divider {
        display: none;
    }
    body.template-eyou-clone .float-btn-panel {
        display: none;
    }
    body.template-eyou-clone .tc-apply-form {
        padding: 24px;
    }
    body.template-eyou-clone .tc-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
