
/* 新增样式 */
.venue-tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 12px; margin-right: 5px; color: #fff; }
.tag-type { background: #3498db; }
.tag-area { background: #2ecc71; }

.overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; background: #f9f9f9; padding: 20px; border-radius: 8px; }
.overview-item { display: flex; flex-direction: column; }
.overview-label { color: #999; font-size: 12px; margin-bottom: 5px; }
.overview-value { font-weight: bold; font-size: 16px; color: #333; }
.overview-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.facility-tag { background: #fff; border: 1px solid #ddd; padding: 2px 8px; border-radius: 12px; font-size: 12px; color: #666; }

.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 20px; }
.highlight-item { background: #e8f4fc; padding: 15px; border-radius: 8px; border-left: 3px solid #3498db; }
.highlight-item h4 { margin: 0 0 5px 0; color: #3498db; font-size: 16px; }
.highlight-item p { margin: 0; color: #666; font-size: 13px; }

.environment-scroll { display: flex; overflow-x: auto; gap: 15px; padding-bottom: 10px; }
.env-item { min-width: 200px; border-radius: 8px; overflow: hidden; position: relative; }
.env-item img { width: 100%; height: 150px; object-fit: cover; }
.env-title { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: #fff; padding: 5px 10px; font-size: 12px; }

.course-list { display: flex; flex-direction: column; gap: 15px; }
.course-item { display: flex; gap: 15px; background: #fff; border: 1px solid #eee; padding: 10px; border-radius: 8px; transition: transform 0.2s; }
.course-item:hover { transform: translateY(-2px); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.course-img { width: 100px; height: 75px; border-radius: 4px; object-fit: cover; }
.course-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.course-info h4 { margin: 0; font-size: 16px; }
.course-meta { font-size: 12px; color: #999; }
.course-price { color: #e74c3c; font-weight: bold; }
.more-link { font-size: 14px; color: #3498db; text-decoration: none; }

.coach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; }
.coach-card { text-align: center; }
.coach-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; border: 2px solid #eee; }
.coach-name { font-weight: bold; margin-bottom: 2px; }
.coach-title { font-size: 12px; color: #999; }

.venue-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .overview-grid { grid-template-columns: 1fr; }
    .overview-item { grid-column: span 1 !important; }
    .venue-actions {
        flex-direction: column;
    }
    .venue-actions .btn {
        width: 100%;
        text-align: center;
    }
}
