 :root {
            --primary-green: #1a5632;
            --medium-green: #2e7d32;
            --light-green: #4caf50;
            --pale-green: #e8f5e9;
            --accent-green: #81c784;
            --text-dark: #263238;
            --text-light: #546e7a;
            --white: #ffffff;
            --light-gray: #f5f7fa;
            --border-color: #e0e0e0;
            --shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
        }
        
  
        
  .page-right-container {
            width: 100%;
            max-width: 800px;
        }
        
        .right-section {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: var(--shadow);
        }
        
        .right-title {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--pale-green);
        }
        
        /* 核心优势部分 */
        .right-advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .right-advantage-card {
            background: var(--pale-green);
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid var(--light-green);
        }
        
        .right-advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .right-advantage-card h3 {
            color: var(--primary-green);
            margin-bottom: 12px;
            font-size: 1.2rem;
        }
        
        .right-advantage-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        /* 培训简介部分 */
        .right-intro-content {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-light);
        }
        
        .right-intro-content p {
            margin-bottom: 15px;
        }
        
        /* 行业表格部分 */
        .right-industries-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        .right-industries-table th {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 12px 15px;
            text-align: left;
            font-weight: 500;
        }
        
        .right-industries-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        
        .right-industries-table tr:nth-child(even) {
            background-color: var(--pale-green);
        }
        
        .right-industries-table tr:hover {
            background-color: rgba(76, 175, 80, 0.1);
        }
        
        /* 合作模式部分 */
        .right-cooperation-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .right-step {
            flex: 0 0 48%;
            background: var(--pale-green);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .right-step-number {
            background: var(--primary-green);
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 12px;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        
        .right-step-content h3 {
            color: var(--primary-green);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .right-step-content p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* 获取流程部分 */
        .right-process-flow {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            position: relative;
        }
        
        .right-process-flow:before {
            content: '';
            position: absolute;
            top: 35px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: var(--light-green);
            z-index: 1;
        }
        
        .right-process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .right-process-number {
            width: 70px;
            height: 70px;
            background: var(--primary-green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .right-process-step h3 {
            color: var(--primary-green);
            margin-bottom: 8px;
            font-size: 1rem;
        }
        
        .right-process-step p {
            color: var(--text-light);
            font-size: 0.85rem;
        }
        
        .right-cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--medium-green));
            border-radius: 10px;
            padding: 35px 25px;
            text-align: center;
            color: var(--white);
            margin-top: 20px;
        }
        
        .right-cta-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .right-cta-text {
            font-size: 1rem;
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        
        .right-cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--primary-green);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--white);
        }
        
        .right-cta-button:hover {
            background: transparent;
            color: var(--white);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-right-container {
                max-width: 100%;
            }
            
            .right-section {
                padding: 20px;
            }
            
            .right-advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .right-step {
                flex: 0 0 100%;
            }
            
            .right-process-flow {
                flex-direction: column;
            }
            
            .right-process-flow:before {
                display: none;
            }
            
            .right-process-step {
                margin-bottom: 25px;
            }
            
            .right-industries-table {
                font-size: 0.8rem;
            }
            
            .right-industries-table th,
            .right-industries-table td {
                padding: 8px 10px;
            }
        }