/* 渠道合作页面样式 */

/* 英雄区块样式 */
.hero {
    background: linear-gradient(135deg, 
        rgba(251, 146, 60, 0.1) 0%,
        rgba(59, 130, 246, 0.1) 50%,
        rgba(168, 85, 247, 0.1) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="1" fill="rgba(251,146,60,0.2)"/><circle cx="70" cy="70" r="1" fill="rgba(59,130,246,0.2)"/><circle cx="50" cy="80" r="0.5" fill="rgba(168,85,247,0.2)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text {
    color: #1a202c;
    font-weight: 600;
    font-size: 1rem;
}

/* 合作模式样式 */
.partnership-models {
    padding: 100px 0;
    background: #f8fafc;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.model-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fb923c, #3b82f6, #a855f7);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.model-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.model-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.model-icon.regional { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.model-icon.integrator { background: linear-gradient(135deg, #10b981, #059669); }
.model-icon.consultant { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.model-icon.reseller { background: linear-gradient(135deg, #f59e0b, #d97706); }
.model-icon.expert { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.model-icon.community { background: linear-gradient(135deg, #ec4899, #be185d); }

.model-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.model-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.model-content {
    space-y: 1.5rem;
}

.model-features,
.model-requirements {
    margin-bottom: 1.5rem;
}

.model-features h4,
.model-requirements h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.model-features h4::before {
    content: '✨';
    margin-right: 0.5rem;
}

.model-requirements h4::before {
    content: '📋';
    margin-right: 0.5rem;
}

.model-features ul,
.model-requirements ul {
    list-style: none;
    padding: 0;
}

.model-features li,
.model-requirements li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.model-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.model-requirements li::before {
    content: '•';
    color: #fb923c;
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.model-investment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    margin-top: 1.5rem;
}

.investment-label {
    color: #64748b;
    font-weight: 500;
}

.investment-amount {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 合作优势样式 */
.partnership-advantages {
    padding: 100px 0;
    background: white;
}

.advantages-container {
    space-y: 4rem;
}

.advantage-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.03), rgba(59, 130, 246, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(251, 146, 60, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #fb923c;
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.advantage-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* 合作流程样式 */
.partnership-process {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(251, 146, 60, 0.05) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        rgba(168, 85, 247, 0.05) 100%);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #fb923c, #3b82f6, #a855f7);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    max-width: 350px;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 6rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 6rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-duration {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(59, 130, 246, 0.1));
    color: #fb923c;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 成功案例样式 */
.partner-success {
    padding: 100px 0;
    background: white;
}

.success-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-item {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.03), rgba(59, 130, 246, 0.03));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(251, 146, 60, 0.1);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(251, 146, 60, 0.1);
}

.partner-avatar {
    margin-right: 1rem;
}

.avatar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.partner-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.partner-type,
.cooperation-time {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
}

.partner-type {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.cooperation-time {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.case-story {
    color: #64748b;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(251, 146, 60, 0.1);
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 合作政策样式 */
.partnership-policy {
    padding: 100px 0;
    background: #f8fafc;
}

.policy-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    border-color: #fb923c;
    color: #fb923c;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.tab-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease-in-out;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.policy-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(251, 146, 60, 0.1);
}

.policy-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.commission-rate {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.policy-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.policy-card li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.policy-card li::before {
    content: '•';
    color: #fb923c;
    margin-right: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.protection-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.protection-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(251, 146, 60, 0.1);
}

.protection-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.protection-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.protection-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-category {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), rgba(59, 130, 246, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(251, 146, 60, 0.1);
}

.support-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.support-category ul {
    list-style: none;
    padding: 0;
}

.support-category li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.support-category li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.incentive-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.incentive-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(251, 146, 60, 0.1);
}

.incentive-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.incentive-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.incentive-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.incentive-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.incentive-detail span {
    padding: 0.25rem 0.75rem;
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 立即申请样式 */
.apply-partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(251, 146, 60, 0.1) 0%,
        rgba(59, 130, 246, 0.1) 50%,
        rgba(168, 85, 247, 0.1) 100%);
}

.apply-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.apply-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.apply-cta {
    margin: 3rem 0;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 146, 60, 0.4);
}

.button-icon {
    font-size: 1.2rem;
}

.button-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.apply-note {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fb923c, #3b82f6);
    color: white;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .model-card {
        padding: 1.5rem;
    }
    
    .process-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        max-width: none;
        margin: 0 !important;
    }
    
    .timeline-content::before {
        left: -30px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .tab-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .success-cases {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
    }
    
    .apply-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .model-card {
        padding: 1rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .tab-content {
        padding: 2rem 1rem;
    }
    
    .apply-highlights {
        grid-template-columns: 1fr;
    }
    
    .apply-button {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}

/* 确保所有emoji正确显示 */
.emoji, .hero .emoji, .section-title .emoji, .benefit-icon, .model-icon, .advantage-icon, .protection-icon, .incentive-icon, .highlight-icon, .contact-icon, .button-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* 特殊动画效果 */
.model-card:hover .model-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.timeline-marker {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(251, 146, 60, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
    }
} 