        /* 右侧内容区保持不变 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 280px);
            min-height: 100vh;
        }
        
        .page-header {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .page-title {
            font-size: 24px;
            color: #8B5A2B;
            font-weight: bold;
        }
        
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .category-btn {
            padding: 8px 15px;
            background-color: #E8D5B5;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
        }
        
.category-btn.active {
    background-color: #8B5A2B !important;
    color: white !important;
    border-color: #8B5A2B !important;
}
        
        .temple-list-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .temple-item {
            background-color: white;
            border-radius: 5px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .temple-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .temple-name {
            font-size: 18px;
            color: #8B5A2B;
            margin-bottom: 10px;
            font-weight: normal;
            transition: all 0.3s;
        }
        
        .temple-name:hover {
            color: #5a4a3a;
        }
        
        .temple-meta {
            display: flex;
            margin-bottom: 12px;
            font-size: 13px;
            color: #a69b8a;
        }
        
        .temple-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .temple-meta i {
            margin-right: 5px;
            font-size: 14px;
        }
        
        .temple-desc {
            color: #7a6a5a;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .temple-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .temple-category {
            padding: 4px 10px;
            background-color: #F5E8C4;
            border-radius: 4px;
            font-size: 12px;
            color: #8B5A2B;
        }
        
        .view-detail {
            color: #8B5A2B;
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .view-detail:hover {
            color: #5a4a3a;
        }
        
        .view-detail i {
            margin-left: 5px;
            transition: all 0.3s;
        }
        
        .view-detail:hover i {
            transform: translateX(3px);
        }