/* 样品页面样式 */

.samples-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
    text-align: center;
}

.samples-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.samples-hero p {
    font-size: 18px;
    color: var(--gray);
}

/* 样品分类 */
.samples-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.sample-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

/* 标签内容 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 样品卡片 */
.sample-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
}

.sample-header {
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
}

.platform-tag {
    background: var(--gradient);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.content-type {
    background: #e0e7ff;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.sample-content {
    padding: 24px;
}

.sample-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.sample-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 12px;
}

.sample-content .tags {
    color: var(--primary);
    font-weight: 500;
    margin-top: 16px;
}

/* 脚本时间线 */
.script-timeline {
    margin-top: 20px;
}

.timeline-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 12px;
}

.timeline-item .time {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.timeline-item p {
    margin-bottom: 4px;
    font-size: 14px;
}

/* 产品亮点 */
.product-highlights {
    display: flex;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.highlight .icon {
    font-size: 20px;
}

.highlight .text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 响应式 */
@media (max-width: 768px) {
    .sample-tabs {
        flex-wrap: wrap;
    }
    
    .product-highlights {
        flex-direction: column;
    }
}
