.top-card { 
    background:#fff; 
    border-radius:8px; 
    box-shadow:0 4px 16px rgba(0,0,0,.04); 
    padding:16px; 
    display:flex; 
    align-items:center; 
    gap:14px;
    justify-content: space-between;
}

.top-logo { 
    width:90px; 
    height:90px; 
    border-radius:50%; 
    overflow:hidden;
}

.top-logo img { 
    width:90px; 
    height:90px; 
}


.top-meta { 
    font-size:16px;
    color:#222;
    display: flex;
    align-items: center;
}

.top-meta::before{
    content: "";
    display: block;
    width:12px;
    height:14px;
    background: url("/assets/images/common/icon_location.png") no-repeat;
    margin-right: 5px;
}

.top-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.tag {
    font-size:12px; 
    color:#FF7016;
    border-radius: 10px; 
    border:solid 1px #FF7016;
    padding:2px 8px; 
}
.fav { 
    color:#666666;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    }

    .fav::before{
    content:"";
    width:17px;
    height: 15px;
    margin:0px auto;
    display: block;
    background: url("/assets/images/common/icon_collect.png") no-repeat;
    margin-bottom: 6px;
    }

.tabs { margin-top:12px; display:flex; gap:10px; }
.tabs a { 
    border-radius: 6px;
    background-color: #fff;
    padding: 12px 25px;
    font-size:18px;
    color:#222;
}
.tabs a.active { 
    background: linear-gradient(90deg, #FF8D1A 0%, #ED0000 100%);
    font-size:18px;
    color:#fff;
    }

.card {
    border-radius:8px; 
    box-shadow:0 4px 16px rgba(0,0,0,.04);
    background-color: #fff;
    margin-top:16px;
}


.section-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title .title{
    font-size:20px;
    font-weight: 600;
    color:#222;
    position: relative;
    text-indent: 13px;
    line-height: 1;
}

.section-title .title::before{
    content: "";
    position: absolute; 
    width:3px;
    height: 80%;
    display: block;
    background-color: #FF7016;
    left: 0px;
    top:50%;
    transform: translateY(-50%);
}

.section-title .filter{
    display: flex;
    gap:10px;
}

.section-title .customer-select{
    background-color: rgba(255, 112, 22, 0.04);
    border-radius:8px;
    color:rgba(179, 97, 4, 1);
    padding: 4px 12px;
    position: relative;
    cursor: pointer;
}

.section-title .customer-select span{
    display: flex;
    align-items: center;
}

.section-title .customer-select span::after{
    content: "\eb06";
    font-family: iconfont;
    margin-left: 6px;
}

/* 模拟下拉框 */
.section-title .customer-select .select-dropdown{
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border: 1px solid #f0f0f0;
    padding: 6px 0;
    display: none;
    z-index: 20;
}

.section-title .customer-select.open .select-dropdown{
    display: block;
}

.section-title .customer-select .select-option{
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.section-title .customer-select .select-option:hover{
    background: rgba(255, 112, 22, 0.06);
}

.section-title .customer-select .select-option.selected{
    color: #FF7016;
    font-weight: 600;
}

.table .thead tr th{
    font-weight: 100;
    color:#777;
    border-top: solid 1px #F2F2F2;
}

.table td{
    color:#222;
    font-size:16px;
    border-top: solid 1px #F2F2F2;
    padding: 8px 0px;
}