* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* 搜索框样式 */
.search-container {
    background-color: #1890ff;
    padding: 13.33px;
    text-align: center;
}

.search-box {
    width: 90%;
    max-width: 600px;
    height: 26.67px;
    border-radius: 13.33px;
    border: none;
    padding: 0 13.33px;
    font-size: 14px;
    outline: none;
}

/* 行业分类导航 */
.job-category-container {
    background-color: white;
    padding: 15px 0;
    margin-bottom: 15px;
}

.category-list {
    display: flex;
    overflow-x: auto;
    padding: 10px 15px;
    gap: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.category-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.category-item {
    flex-shrink: 0;
    text-align: center;
}

.category-name {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    display: inline-block;
}

.category-name.active {
    background-color: #1890ff;
    color: white;
}

/* 企业列表 */
.company-list {
    padding: 0 15px;
}

.company-item {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.company-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 16px;
    font-weight: bold;
}

.company-industry {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.company-meta {
    display: flex;
    font-size: 14px;
    color: #999;
}

.company-meta div {
    margin-right: 15px;
}

.company-jobs {
    font-size: 14px;
    color: #1890ff;
    margin-top: 10px;
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.bottom-nav-item {
    text-align: center;
}

.bottom-nav-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.bottom-nav-text {
    font-size: 12px;
}

.main-content {
    padding-bottom: 60px;
}

