    /* 1. 基础容器样式：卡片式设计 */
    .branch-card {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 1.5715;
        margin-bottom: 16px;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        background-color: #fff;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    /* 2. 头部样式：包含标题和折叠箭头 */
    .branch-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        cursor: pointer;
        background-color: #fafafa;
        border-radius: 8px;
    }
    
    .branch-card-header:hover {
        background-color: #f0f0f0;
    }

    /* 标题区域 */
    .branch-title-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .branch-name {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .branch-address, .branch-tel {
        font-size: 13px;
        color: #666;
    }

    /* 折叠箭头样式 */
    .branch-arrow {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* 箭头图标（使用CSS绘制） */
    .branch-arrow::after {
        content: '';
        width: 6px;
        height: 6px;
        border-right: 2px solid #999;
        border-bottom: 2px solid #999;
        transform: rotate(45deg) translate(-2px, -2px);
    }

    /* 3. 内容区域：默认隐藏，展开时显示 */
    .branch-card-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .branch-info-list {
        padding: 0 20px 20px 20px;
        margin: 0;
        list-style: none;
    }

    .branch-info-list li {
        padding: 8px 0;
        border-bottom: 1px dashed #f0f0f0;
        color: #555;
    }

    .branch-info-list li:last-child {
        border-bottom: none;
    }

    .branch-info-list li span {
        font-weight: 500;
    }

    /* 4. 展开状态样式（通过JS切换这个类名） */
    .branch-card.active .branch-card-content {
        max-height: 2000px; /* 足够容纳内容的高度 */
    }
    
    .branch-card.active .branch-arrow {
        transform: rotate(180deg);
    }
	
	.tbContent.accordion-desc {
    display: table-row !important;
}