/* 关于我们样式 */
.about-section {
    padding: 50px 0;
    background: #fff;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-more {
    display: inline-block;
    padding: 10px 30px;
    background: #FF0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #CC0000;
    color: #fff;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-content {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .about-content h3 {
        font-size: 20px;
    }
    
    .about-content p {
        font-size: 14px;
    }
} 