/* 实训基地特定样式 */
.base-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.base-title {
    font-size: 36px;
    color: #333;
    margin: 20px 0;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}


.base-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 20px 0 40px 0;
    line-height: 1.6;
}

.base-item {
    display: flex;
    margin-bottom: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}


.base-image {
    flex: 1;
    min-height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.base-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.base-info {
    flex: 1;
    padding: 20px;
    background: #fff;
}

.base-name {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.base-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.base-details {
    display: flex;
    flex-wrap: wrap;
}

.detail-item {
    width: 50%;
    margin-bottom: 15px;
}

.detail-label {
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

.detail-value {
    color: #666;
}

@media (max-width: 768px) {
    .base-item {
        flex-direction: column;
    }
    
    .detail-item {
        width: 100%;
    }
    
    .base-title {
        font-size: 28px;
    }
}