    /* 股权激励方案页面独享样式 */
        
        /* 页面标题部分 */
        .page-hero {
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(10, 26, 53, 0.85), rgba(10, 26, 53, 0.85)), url('/template/jia/images/24.jpg');
            background-size: cover;
            background-position: center;
            color: #fff;
            margin-top: 70px;
            position: relative;
        }
        
        .page-hero-content {
            max-width: 900px;
            padding: 0 20px;
        }
        
        .page-hero h1 {
            font-size: 58px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .page-hero p {
            font-size: 22px;
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        /* 激励模式 */
        .incentive-models {
            background: #f9f9f9;
            position: relative;
            overflow: hidden;
        }
        
        .models-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .model-tab {
            padding: 15px 30px;
            background: #fff;
            border-radius: 50px;
            margin: 0 10px 15px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
        }
        
        .model-tab.active {
            background: var(--accent-color);
            color: #fff;
            border-color: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .model-content {
            display: none;
        }
        
        .model-content.active {
            display: block;
        }
        
        .model-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .model-text h3 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .model-text p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        
        .model-features {
            margin-top: 30px;
        }
        
        .model-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .model-feature i {
            color: var(--accent-color);
            margin-right: 15px;
            font-size: 18px;
        }
        
        .model-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .model-image img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        
        .model-image:hover img {
            transform: scale(1.05);
        }
        
        /* 激励优势 */
        .incentive-advantages {
            position: relative;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .advantage-card {
            background: #fff;
            border-radius: 12px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .advantage-card:before {
            content: '';
            position: absolute;
            top: 0;

            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            transform: scaleX(0);
            transition: var(--transition);
            z-index: -1;
        }
        
        .advantage-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
        }
        
        .advantage-card:hover:before {
            transform: scaleX(1);
        }
        
        .advantage-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 34px;
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 20px rgba(10, 26, 53, 0.2);
        }
        
        .advantage-card:hover .advantage-icon {
            background: linear-gradient(135deg, var(--accent-color), #e8c44d);
            transform: rotateY(180deg) scale(1.1);
        }
        
        .advantage-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .advantage-card p {
            color: var(--text-light);
            line-height: 1.8;
        }
        
        /* 设计流程 */
        .design-process {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .design-process .section-title h2 {
            color: #fff;
        }
        
        .design-process .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 45px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 15px;
        }
        
        .step-icon {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 34px;
            position: relative;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: processPulse 3s infinite;
        }
        
        @keyframes processPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }
        
        .process-step h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .process-step p {
            font-size: 15px;
            opacity: 0.9;
        }
        
        /* 核心要素 */
        .core-elements {
            position: relative;
        }
        
        .elements-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .element-card {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .element-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .element-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
        }
        
        .element-card h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .element-card p {
            margin-bottom: 25px;
            color: var(--text-light);
        }
        
        .element-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .element-list i {
            margin-right: 10px;
            color: var(--accent-color);
            font-size: 16px;
        }
        
        /* 咨询表单 */
        .consultation-form-section {
            background: #f9f9f9;
            position: relative;
            overflow: hidden;
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            border-radius: 12px;
            padding: 60px;
            box-shadow: var(--shadow-heavy);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-title h3 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .form-title p {
            color: var(--text-light);
            font-size: 18px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            margin-top: 20px;
            font-size: 18px;
            padding: 18px;
        }
        
        /* 响应式调整 */
        @media (max-width: 1200px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .model-grid {
                grid-template-columns: 1fr;
            }
            
            .elements-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .process-step {
                margin-bottom: 40px;
                width: 100%;
                max-width: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 46px;
            }
            
            .page-hero p {
                font-size: 18px;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .model-text h3 {
                font-size: 28px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-container {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero h1 {
                font-size: 36px;
            }
            
            .page-hero p {
                font-size: 16px;
            }
            
            .model-tab {
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .form-title h3 {
                font-size: 26px;
            }
        }