* {
    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;
}

/* 职位列表 */
.job-list {
    padding: 0 15px;
}

.job-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.job-title {
    font-size: 16px;
    font-weight: bold;
}

.job-company {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.job-salary {
    color: #ff4d4f;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.job-tag {
    background-color: #f0f8ff;
    color: #1890ff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.job-location {
    font-size: 14px;
    color: #999;
}

/* 底部导航 */
.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;
}

