/* 顶部筛选区域 */
.filter-card { 
    border-bottom: solid 1px rgba(34, 34, 34, 0.06);
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-top:20px;
}

.filter-top {
    display:flex; 
    align-items:center;
    gap:16px; 
    border-bottom:solid 1px rgba(34, 34, 34, 0.06);
    padding-bottom: 14px;
}

.tabs { 
    display:flex; 
    gap:10px;
    flex-grow: 1;
}

.tabs .btn { 
    font-size:24px;
    color:#999999; 
    padding:6px 12px; 
    border-radius:16px; 
    box-shadow: none;
}

.tabs .btn.active { 
    font-size:24px;
    color:#222222;
    font-weight: 600;
}

.search { 
    
    border:solid 1px #FF7016;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.search input {
    width:320px; 
    height:36px; 
    background-color: transparent;
    outline:none;
    border:none;
    font-size:16px;
    margin-left:10px;
}

.filter-row { 
    display:flex; 
    margin:20px 0px;
}

.filter-label { 
    font-size:16px;
    color:#666666;
    text-align: center;
    width:100px;
    margin-right: 20px;
    /* text-align: center; */
}

.filter-options { 
    flex:1; 
    display:flex; 
    flex-wrap:wrap; 
    gap:18px; 
}

.filter-link { 
    text-decoration:none; 
    font-size:16px;
    color:#222;
    position: relative;
}

.filter-link.active { 
    color:#FF7016; 
    }

    .filter-link.active::after{
    content: "";
    width:100%;
    height: 2px;
    display: block;
    background-color: #FF7016;
    line-height: 1.5;
    }

.collapse-action { text-align:center; color:#ff6b35; font-size:12px; cursor:pointer; padding-top:4px; }

/* 列表区域 */
.list-grid { 
    display:grid; 
    grid-template-columns: 1fr 1fr; 
    gap:14px; 
    margin-top:20px;
}
.list-grid .item { 
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    }
.list-grid .logo { 
    width:90px; 
    height:90px; 
    border-radius:50%;
    overflow:hidden; 
    margin-right:12px; 
}
.list-grid .logo img { 
    width:90px; 
    height:90px; 
}
.list-grid .main-info { 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
.list-grid .school-name {
    font-size:20px;
    color:#222;
    font-weight: 600;
    }
.list-grid .school-meta { 
    font-size:14px;
    font-weight: 600;
    color:#222;
    display: flex;
    align-items: center;
}

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

.list-grid .tags { 
    display:flex; 
    gap:6px; 
    flex-wrap:wrap; 
}

.list-grid .tag { 
    font-size:14px; 
    color:#FF7016; 
    border:solid 1px #FF7016;
    border-radius: 25px;
    padding: 0px 10px;
}


.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;
    }

/* 分页样式 */
.pagination-wrapper {
    margin: 30px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    background: #fff;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination a:hover {
    background: #FF7016;
    color: #fff;
    border-color: #FF7016;
}

.pagination .current {
    background: #FF7016;
    color: #fff;
    border-color: #FF7016;
    font-weight: 600;
}

.pagination .prev,
.pagination .next {
    font-weight: 500;
}

.pagination span:not(.current) {
    color: #999;
    cursor: default;
}

/* 响应式分页 */
@media (max-width: 768px) {
    .pagination {
        gap: 4px;
        font-size: 12px;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 8px;
        min-width: 32px;
    }
}