/* 传承方式页面特定样式 */
.inheritance-content {
    padding-top: 60px;
}

/* 英雄区域样式 */
.hero-section {
    height: 400px;
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* 传承概述部分 */
.inheritance-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text p {
    color: #666;
    line-height: 1.6;
}

.intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* 传承方式部分 */
.inheritance-methods {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.inheritance-methods h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.method-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.method-content p {
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.method-content ul {
    list-style: none;
    padding: 0;
}

.method-content li {
    padding: 8px 0;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #eee;
}

.method-content li:last-child {
    border-bottom: none;
}

/* 传承体系部分 */
.inheritance-system {
    padding: 60px 0;
    background-color: #fff;
}

.inheritance-system h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.system-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.system-item {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.system-item:hover {
    transform: translateY(-5px);
}

.system-item h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.system-item ul {
    list-style: none;
    padding: 0;
}

.system-item li {
    padding: 8px 0;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.system-item li:last-child {
    border-bottom: none;
}

/* 成功案例部分 */
.success-cases {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.success-cases h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image {
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 20px;
}

.case-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.case-content p {
    color: #666;
    line-height: 1.6;
}

/* 未来方向部分 */
.future-direction {
    padding: 60px 0;
    background-color: #fff;
}

.future-direction h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.direction-content {
    max-width: 800px;
    margin: 0 auto;
}

.direction-text {
    text-align: center;
    margin-bottom: 40px;
}

.direction-text p {
    color: #666;
    line-height: 1.6;
}

.direction-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.point-item {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.point-item:hover {
    transform: translateY(-5px);
}

.point-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.point-item p {
    color: #666;
} 