:root {
    /* 统一色调：与首页和积分制保持一致 */
    --primary: #0a3d62;
    --secondary: #f39c12;
    --accent: #3498db;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #0f172a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --light: #f8f9fa;
    --dark: #0f172a;
    --performance-primary: #ff6b35;
    --performance-secondary: #2c3e50;
    /* 参考页面的额外颜色变量 */
    --ref-primary: #1e3a8a;
    --ref-primary-light: #3b82f6;
    --ref-secondary: #f59e0b;
    --ref-success: #10b981;
    --ref-blue-light: #eff6ff;
    --ref-blue-dark: #1e40af;
    --ref-gray-light: #e2e8f0;
    --ref-gray-text: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏占位符 - 将由公共组件替换 */
#header-placeholder {
    background: transparent;
}

/* 英雄区域样式 - 现代清新科技风渐变浅蓝背景 */
.hero {
    padding: 0;
    margin-top: 0; /* 消除与页头之间的缝隙 */
    background: linear-gradient(135deg, #EAF5FF 0%, #C1E1FF 100%);
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: #333333;
    min-height: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.hero-text {
    flex: 2;
    padding-right: 80px;
    text-align: left;
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: flex-start;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.performance-hero-image {
    flex: 0.8;
    display: flex;
    justify-content: flex-start;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-right-image {
    width: 550px;
    height: 413px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #333333;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: #333333;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 35px;
    max-width: 620px;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    opacity: 0.95;
}

.highlight {
    background: linear-gradient(120deg, rgba(243, 156, 18, 0.15) 0%, rgba(243, 156, 18, 0.05) 100%);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
}

/* 功能特点区域 */
.features {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* 交替展示区域 - 修改为与OKR页面一致 */
.alternate-section {
    padding: 100px 0;
    background: var(--light);
}

.alternate-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 120px;
    gap: 40px;
    padding: 0;
}

.alternate-block:nth-child(even) {
    flex-direction: row-reverse;
}

.alternate-image {
    width: 620px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: auto;
    display: flex;
    align-items: flex-start;
}

.alternate-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: block;
}

/* PC端内容区域样式 */
.alternate-content {
    flex: 1;
    padding: 0;
    max-width: none;
    margin: 0;
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .alternate-image {
        width: 100%;
        max-width: 500px;
    }
    
    .alternate-image img {
        width: 100%;
        max-width: 500px;
    }
    
    .alternate-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .alternate-block {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .alternate-content {
        flex: 1 0 100%;
        max-width: none;
        order: 2;
    }
    
    .alternate-image {
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .alternate-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .alternate-image img {
        max-width: 280px;
        width: 100%;
    }
    
    .alternate-content h3 {
        font-size: 1.3rem;
    }
}

/* PC端左右图文布局 */
@media (min-width: 901px) {
    .alternate-content {
        flex: 1;
        padding: 40px;
        max-width: none;
    }
}

.alternate-content h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.alternate-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* 全宽大图区域 */
.full-width-section {
    padding: 60px 0 100px;
    background: var(--jx-light-gray);
}

.full-width-header {
    text-align: center;
    margin-bottom: 60px;
}

.full-width-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.full-width-header p {
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.full-width-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    height: 500px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 客户区域 */
.clients {
    padding: 100px 0;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: white;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.15);
}

.client-card img {
    width: 200px;
    height: 100px;
    margin-bottom: 0;
    filter: none;
}

.client-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0;
}

/* 底部占位符 - 将由公共组件替换 */
#footer-placeholder {
    background: transparent;
}

/* 底部功能按钮区域 */
.bottom-functions-section {
    background: var(--jx-light-gray);
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* 确保alternate-section和full-width-section之间没有线条 */
.alternate-section {
    border-bottom: none;
    margin-bottom: 0;
}

/* 动画效果 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}



.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF9F00 0%, #FF8C00 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 159, 0, 0.3);
    margin-right: 15px;
    margin-bottom: 10px;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 0, 0.4);
    background: linear-gradient(135deg, #FF8C00 0%, #FF7800 100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid #FF9F00;
    color: #FF9F00;
    box-shadow: none;
}

.btn-outline:hover {
    background: #FF9F00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 0, 0.4);
}

/* 通用jx-btn样式 */
.jx-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    margin-right: 15px;
    margin-bottom: 10px;
    border: 2px solid #f97316;
}

.jx-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    background: #e5670f;
}

/* 针对jx-btn的轮廓样式 */
.jx-btn.btn-outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
    box-shadow: none;
}

.jx-btn.btn-outline:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* 解决jx-contact-online样式冲突，使用更高优先级的选择器 */
/* 实心按钮样式 */
.jx-btn.jx-contact-online.btn-solid {
    background: #f97316 !important;
    border: 2px solid #f97316 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3) !important;
}

.jx-btn.jx-contact-online.btn-solid:hover {
    background: #e5670f !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
}

/* 轮廓按钮样式 */
.jx-btn.jx-contact-online.btn-outline {
    background: transparent !important;
    border: 2px solid #f97316 !important;
    color: #f97316 !important;
    box-shadow: none !important;
}

.jx-btn.jx-contact-online.btn-outline:hover {
    background: #f97316 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .alternate-block {
        grid-template-columns: 1fr;
        margin-bottom: 70px;
    }
    
    .alternate-block:nth-child(even) .alternate-image {
        order: 1;
    }
    
    .alternate-block:nth-child(even) .alternate-content {
        order: 2;
    }
    
    .alternate-content {
        padding: 30px 0 0;
    }
    
    .alternate-image {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .full-width-header h2 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* 参考页面的功能区块样式 - 参考目标管理智能化样式 */
.ref-feature-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 0;
    gap: 60px;
    margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    flex-wrap: nowrap;
    background-color: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

/* 反向排列规则 - 仅在PC端生效 */
@media (min-width: 901px) {
    .ref-feature-section.ref-alternate {
        flex-direction: row-reverse;
    }
}

.ref-feature-image {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.ref-feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 100%;
}

.ref-feature-image:hover img {
    transform: scale(1.02);
}

.ref-feature-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-align: left !important;
    padding: 0;
    width: auto !important;
    min-height: auto !important;
    background-color: transparent !important;
}

.ref-feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left !important;
}

.ref-feature-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left !important;
}

.ref-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.ref-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    position: relative;
    text-align: left !important;
    padding-left: 32px;
}

.ref-feature-list li i {
    color: var(--ref-success);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* 移除重复图标 */
.ref-feature-list li::before,
.ref-feature-list li::after {
    display: none;
    content: '';
}

.ref-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.ref-feature-tag {
    background: var(--ref-blue-light);
    color: var(--ref-blue-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.ref-feature-tag:hover {
    background: var(--ref-blue-dark);
    color: white;
}

.ref-feature-buttons {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.ref-feature-buttons button,
.ref-feature-buttons a {
    width: 200px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center !important;
    justify-content: center;
    align-items: center;
    display: flex !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    min-width: 200px;
    max-width: 200px;
    margin: 0;
}

/* 主要按钮样式 */
.ref-feature-buttons .cta-button {
    background: #f97316;
    color: white;
    border: 2px solid #f97316;
}

/* 次要按钮样式 */
.ref-feature-buttons .cta-button.btn-outline {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
}

.ref-feature-buttons .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.ref-feature-buttons .cta-button.btn-outline:hover {
    background: #f97316;
    color: white;
}

/* 反向排列的左右图文 - 仅在PC端生效 */
@media (min-width: 901px) {
    .ref-alternate {
        flex-direction: row-reverse;
    }
    
    .ref-alternate .ref-feature-image {
        margin-right: 0;
        margin-left: 0;
    }
}

/* 响应式调整 */
@media (max-width: 900px) {
    /* 左右图文部分在小屏幕设备上垂直排列 */
    .ref-feature-section {
        flex-direction: column;
        gap: 40px;
        padding: 30px 0;
        align-items: flex-start;
    }
    
    /* 图片区域适应屏幕宽度 */
    .ref-feature-image {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 20px !important;
    }
    
    /* 内容区域适应屏幕宽度 */
    .ref-feature-content {
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    /* 反向排列的左右图文也保持垂直排列 */
    .ref-alternate {
        flex-direction: column;
    }
    
    /* 图片尺寸调整 */
    .ref-feature-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    /* 标题和描述在小屏幕设备上的字体大小调整 */
    .ref-feature-title {
        font-size: 1.8rem;
    }
    
    .ref-feature-desc {
        font-size: 1rem;
    }
    
    /* 按钮在小屏幕设备上的宽度调整 */
    .ref-feature-buttons button,
    .ref-feature-buttons a {
        width: 100% !important;
        max-width: none !important;
    }
    
    .ref-feature-list li {
        padding-left: 32px;
    }
    
    .ref-feature-list li i {
        font-size: 1rem;
    }
    
    .ref-feature-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* 更小屏幕的调整 */
@media (max-width: 480px) {
    /* 进一步调整标题字体大小 */
    .ref-feature-title {
        font-size: 1.6rem;
    }
    
    /* 调整列表项的内边距 */
    .ref-feature-list li {
        padding-left: 20px !important;
        font-size: 0.95rem;
    }
    
    /* 调整图标大小 */
    .ref-feature-list li i {
        font-size: 0.9rem !important;
    }
    
    .ref-feature-section {
        gap: 30px;
        padding: 20px 0;
    }
}

/* 强制确保所有文本左对齐 */
.ref-feature-section h3,
.ref-feature-section p,
.ref-feature-section li,
.ref-feature-section ul,
.ref-feature-section button,
.ref-feature-section a {
    text-align: left !important;
}

/* 确保在移动设备上按钮也是全宽度的 */
@media (max-width: 900px) {
    .cta-button {
        width: 100% !important;
    }
}

/* 参考页面的功能区块样式 - 参考目标管理智能化样式 */
.ref-feature-section {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.ref-feature-image {
    flex: 0 0 45%;
    margin-right: 5%;
    overflow: hidden;
    border-radius: 0;
    background-color: #f8f9fa;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    display: block;
}

.ref-feature-image img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.ref-feature-content {
    flex: 0 0 50%;
    width: 50% !important;
    min-height: auto !important;
    padding: 0 !important;
    background-color: transparent !important;
    display: block !important;
}

/* 强制设置左右图文块的样式 */
.ref-feature-section > .ref-feature-content {
    width: 50% !important;
    min-height: auto !important;
    padding: 0 !important;
    background-color: transparent !important;
    display: block !important;
}

.ref-feature-section > .ref-feature-image {
    width: auto !important;
    height: auto !important;
    background-color: #f8f9fa;
    overflow: hidden;
}

.ref-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
}

.ref-feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
    text-align: left;
}

.ref-feature-list {
    margin: 0 0 30px 0;
    padding: 0;
}

.ref-feature-list li {
    position: relative;
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0 0 0 32px;
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
    text-align: left;
    display: block;
}

/* 优化列表图标显示 */
.ref-feature-list li i,
.ref-feature-list li span {
    position: absolute;
    left: 0;
    top: 2px;
    color: #3b82f6;
    font-size: 1.2rem;
    margin: 0;
    flex-shrink: 0;
}

/* 移除重复图标 */
.ref-feature-list li::before,
.ref-feature-list li::after {
    display: none;
    content: '';
}

/* 标签样式 - 胶囊形状 */
.ref-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px 0;
}

.ref-tag {
    flex: none;
    padding: 8px 16px;
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* 按钮样式 - 参考目标管理智能化的按钮样式 */
.ref-feature-buttons {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.ref-feature-buttons button,
.ref-feature-buttons a {
    width: 200px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center !important;
    justify-content: center;
    align-items: center;
    display: flex !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    min-width: 200px;
    max-width: 200px;
    margin: 0;
}

/* 主要按钮样式 - 使用jx-btn类 */
.ref-feature-buttons .jx-btn {
    background: #f97316;
    color: white;
    border: 2px solid #f97316;
}

.ref-feature-buttons .jx-btn:hover {
    background: #e5670f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* 次要按钮样式 */
.ref-feature-buttons .cta-button.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.ref-feature-buttons .cta-button.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

/* 反向排列的左右图文 */
.ref-alternate {
    flex-direction: row-reverse;
}

.ref-alternate .ref-feature-image {
    margin-right: 0;
    margin-left: 5%;
}

/* 确保所有文本元素左对齐 */
.ref-feature-section .ref-feature-content * {
    text-align: left !important;
}

/* 响应式调整 */
@media (max-width: 900px) {
    /* 左右图文部分在小屏幕设备上垂直排列 */
    .ref-feature-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* 图片区域适应屏幕宽度 */
    .ref-feature-image {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 20px !important;
    }
    
    /* 内容区域适应屏幕宽度 */
    .ref-feature-content {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    /* 反向排列的左右图文也保持垂直排列 */
    .ref-alternate {
        flex-direction: column;
    }
    
    /* 图片尺寸调整 */
    .ref-feature-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    /* 标题和描述在小屏幕设备上的字体大小调整 */
    .ref-feature-title {
        font-size: 1.5rem;
    }
    
    .ref-feature-desc {
        font-size: 0.95rem;
    }
    
    /* 按钮在小屏幕设备上的宽度调整 */
    .ref-feature-buttons button,
    .ref-feature-buttons a {
        width: 100% !important;
        max-width: none !important;
    }
    
    /* 确保所有文本在小屏幕设备上保持左对齐 */
    .ref-feature-section .ref-feature-content * {
        text-align: left !important;
    }
}

/* 更小屏幕的调整 */
@media (max-width: 480px) {
    /* 进一步调整标题字体大小 */
    .ref-feature-title {
        font-size: 1.3rem;
    }
    
    /* 调整列表项的内边距 */
    .ref-feature-list li {
        padding-left: 20px !important;
    }
    
    /* 调整图标大小 */
    .ref-feature-list li i,
    .ref-feature-list li span {
        font-size: 0.9rem !important;
    }
}