.might-be-interested {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.might-be-interested .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.might-be-interested h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.interested-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.interested-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.interested-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.interested-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.interested-item h3 {
    font-size: 18px;
    margin: 20px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.interested-item p {
    margin: 0 20px 20px;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.interested-item .download-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    text-align: center;
    background-color: #ffffff;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.interested-item .download-btn:hover {
    background-color: #0066cc;
    color: #ffffff;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .interested-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .might-be-interested {
        padding: 40px 0;
    }
    
    .might-be-interested h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .interested-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .interested-item img {
        height: 180px;
    }
    
    .interested-item h3 {
        font-size: 16px;
        margin: 15px;
    }
    
    .interested-item p {
        margin: 0 15px 15px;
        font-size: 13px;
    }
    
    .interested-item .download-btn {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
        padding: 10px;
        font-size: 13px;
    }
}