
/* 头部区域 */
.fake-header {
    display: grid;
    justify-content: start;
    align-items: center;
    margin-bottom: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
}

.fake-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 8px 15px;
    min-width: 300px;
    margin-left: 40px;
}

.search-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.search-icon img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.app-link {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

/* 标签页导航 */
.fake-tabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom:dashed 1px #E0E0E0;
}

.tab-item {
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 60px;
    text-align: center;
}

.tab-item:hover {
    background: #f8f9fa;
    color: #333;
}

.tab-item.active {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

/* 主要内容区域 */
.cols {
    display: flex;
    gap: 20px;
}

.main-section {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 标签页内容 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 虚假大学列表 */
.fake-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fake-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fake-item:last-child {
    border-bottom: none;
}

.fake-item:hover {
    background: #f8f9fa;
    margin: 0 -20px;
    padding: 15px 20px;
    border-radius: 6px;
}

.fake-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.fake-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.fake-location {
    font-size: 14px;
    color: #999;
}

.fake-status {
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* 侧边栏 */
.sidebar {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 卡片样式 */
.card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-more {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    font-weight: normal;
}

/* 最新资讯样式 */
.right-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    /* justify-content: space-between; */
    /* align-items: center; */
    /* justify-content: flex-start; */
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.right-item:last-child {
    border-bottom: none;
}

.right-item span:first-child {
    font-size: 16px;
    color: #222;
    line-height: 1.4;
    flex: 1;
    margin-right: 10px;
}

.right-item .time {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

/* 热门专业样式 */
.major-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.major-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    cursor: pointer;
}

.major-item:last-child {
    border-bottom: none;
}

.major-rank {
    width: 24px;
    height: 29px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.major-rank img {
    width: 100%;
}

.major-info {
    flex: 1;
    display: flex;
    align-items: flex-start !important;
    gap: 4px;
    
}

.major-name {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    line-height: 1.3;
}

.major-heat {
    font-size: 12px;
    color: #FF6B35;
    font-weight: 500;
}
.pagination{
    display: flex;
    justify-content: center;
}
.pagination li{
    margin: 4px;
}
.pagination .active span{
    background-color: rgba(255, 112, 22, 1) !important;
    border: rgba(255, 112, 22, 1) !important;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        padding: 10px;
    }
    
    .fake-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box {
        min-width: auto;
        width: 100%;
    }
    
    .fake-tabs {
        overflow-x: auto;
        padding: 3px;
        flex-wrap: nowrap;
    }
    
    .tab-item {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 50px;
    }
    
    .cols {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .main-section {
        padding: 15px;
    }
    
    .fake-item {
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .fake-item:hover {
        margin: 0 -15px;
        padding: 12px 15px;
    }
    
    .fake-status {
        align-self: flex-end;
    }
    
    .right-item:hover {
        margin: 0 -15px;
        padding: 12px 15px;
    }
    
    .major-item:hover {
        margin: 0 -15px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .fake-title {
        font-size: 24px;
    }
    
    .tab-item {
        padding: 5px 10px;
        font-size: 11px;
        min-width: 45px;
    }
    
    .fake-name {
        font-size: 15px;
    }
    
    .fake-location {
        font-size: 13px;
    }
    
    .fake-status {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .major-name {
        font-size: 13px;
    }
}
