/* 现代艺术融合页面特定样式 */
.modern-art-content {
    padding-top: 60px;
}

/* 英雄区域样式 */
.hero-section {
    height: 400px;
    background: linear-gradient(135deg, #00897b 0%, #009688 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;
}

/* 融合概述部分 */
.fusion-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    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-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* 融合案例部分 */
.fusion-examples {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.fusion-examples h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.example-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
}

.example-image {
    height: 250px;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.example-card:hover .example-image img {
    transform: scale(1.1);
}

.example-content {
    padding: 20px;
}

.example-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.example-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.example-features {
    list-style: none;
    padding: 0;
}

.example-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.example-features li:last-child {
    border-bottom: none;
}

/* 创新方式部分 */
.innovation-methods {
    padding: 60px 0;
    background-color: #fff;
}

.innovation-methods h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-item {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.method-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.method-item ul {
    list-style: none;
    padding: 0;
}

.method-item li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.method-item li:last-child {
    border-bottom: none;
}

/* 发展趋势部分 */
.future-trends {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.future-trends h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.trends-content {
    max-width: 800px;
    margin: 0 auto;
}

.trend-text {
    text-align: center;
    margin-bottom: 40px;
}

.trend-text p {
    color: #666;
    line-height: 1.6;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trend-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-5px);
}

.trend-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trend-item p {
    color: #666;
    line-height: 1.6;
} 