/* 基础样式重置与全局设置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

.property-detail {
    padding: 30px 0;
    background-color: #f5f7fa;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 标题样式 */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e8ed;
    display: inline-block;
}

/* 卡片样式 */
.card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

/* 表格样式 */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #5a6c7d;
    text-align: left;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    width: 20%;
}

.table td {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    vertical-align: top;
}

.table tr:nth-child(even) {
    background-color: #fafbfc;
}

.table tr:hover {
    background-color: #f8f9fa;
}

/* 园区详情内容 */
#intro {
    margin-bottom: 30px;
}

#intro .card {
    line-height: 1.8;
}

#intro p {
    margin-bottom: 15px;
    color: #555;
}

#intro h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin: 25px 0 15px 0;
}

/* 图片展示 */
#images {
    margin-bottom: 30px;
}

#images .row {
    margin: 0 -10px;
}

#images .col-6 {
    padding: 0 10px;
    margin-bottom: 20px;
}

#images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#images img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* 位置地图 */
#location {
    margin-bottom: 30px;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 标签样式 */
.tag {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #bbdefb;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .table th,
    .table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    #images .col-6 {
        width: 100%;
    }
    
    #images img {
        height: 200px;
    }
    
    #map {
        height: 300px;
    }
}