/* 场馆样式 */
.venue-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.venue-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.venue-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.venue-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-info {
    padding: 20px;
}

.venue-info h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.venue-address,
.venue-hours {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.venue-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-actions {
    display: flex;
    gap: 10px;
}

/* 场馆详情页 */
.venue-detail-header {
    position: relative;
    margin-bottom: 30px;
}

.venue-cover {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.venue-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-header-info {
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.venue-header-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.venue-location,
.venue-hours {
    margin-bottom: 10px;
    font-size: 16px;
}

.venue-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.nav-link {
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
    background: #f5f5f5;
}

.venue-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.status-card,
.activity-preview,
.member-benefits,
.quick-actions,
.venue-description {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.status-card:last-child,
.activity-preview:last-child,
.member-benefits:last-child,
.quick-actions:last-child,
.venue-description:last-child {
    border-bottom: none;
}

.status-card h3,
.activity-preview h3,
.member-benefits h3,
.quick-actions h3,
.venue-description h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.status-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.status-item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    color: #666;
}

.status-value {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}

.activity-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-item h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.member-benefits ul {
    list-style: none;
    padding: 0;
}

.member-benefits li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.action-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.action-card:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-5px);
}

.action-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.action-card h4 {
    font-size: 16px;
}

/* 装备相关样式 */
.equipment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #3498db;
}

.tab-btn.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.equipment-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.equipment-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.equipment-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-info {
    padding: 20px;
}

.equipment-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.equipment-type,
.equipment-size {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.equipment-price {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
    margin: 10px 0;
}

.deposit {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.equipment-stock {
    color: #27ae60;
    font-size: 14px;
    margin-bottom: 15px;
}

/* 活动列表样式 */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.3s;
}

.activity-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.activity-image {
    width: 300px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-content {
    flex: 1;
    padding: 20px;
}

.activity-content h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.activity-meta {
    margin-bottom: 15px;
}

.activity-meta p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.activity-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 安全须知样式 */
.safety-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.safety-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.safety-section:last-child {
    border-bottom: none;
}

.safety-section h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.emergency-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.emergency-info p {
    margin-bottom: 15px;
    color: #333;
}

@media (max-width: 768px) {
    .venue-cover {
        height: 250px;
    }
    
    .venue-header-info {
        position: static;
        background: #2c3e50;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-card {
        flex-direction: column;
    }
    
    .activity-image {
        width: 100%;
        height: 200px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

