* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #f5f5f5;
    min-width: 320px;
}

/* 顶部导航 */
.header {
    background: linear-gradient(to right, #c92020, #8b0000);
    padding: 10px 20px;
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.logo img {
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
}

.header-right {
    display: flex;
    gap: 10px;
}

.register-btn,
.login-btn {
    padding: 6px 20px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.register-btn:hover,
.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 主横幅 */
.hero-banner {
    background: linear-gradient(to bottom, #ff4444 0%, #ff6666 30%, #ffaa77 60%, #fff 100%);
    padding: 80px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 200, 100, 0.3), transparent),
        radial-gradient(ellipse at 80% 50%, rgba(255, 100, 50, 0.3), transparent);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.platform-title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.search-box {
    max-width: 600px;
    margin: 0 auto 60px;
    display: flex;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-btn {
    padding: 12px 30px;
    background: #ff4444;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.main-title {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 4px;
}

/* 导航菜单 */
.nav-menu {
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-item {
    padding: 12px 34px;
    border-radius: 24px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.nav-item:hover,
.nav-item.active {
    background-color: #ce2318;
    color:#fff;
}

/* 主内容区 */
.main-content {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 筛选容器 */
.filter-container {
    max-width: 1360px;
    margin: 40px auto 20px;
    padding: 0 20px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.filter-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.filter-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c92020;
    display: inline-block;
}

.filter-group {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-label {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    min-width: 60px;
    padding-top: 5px;
    flex-shrink: 0;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.tag {
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.tag:hover {
  border: 1px solid #ce2318;
  background-color: #fff4f4;
  border-radius: 2px;
  color: #ce2318;
}

.tag.active {
  border: 1px solid #ce2318;
  background-color: #fff4f4;
  border-radius: 2px;
  color: #ce2318;
}

/* 自定义薪酬输入 */
.custom-salary-input {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.salary-input {
    width: 60px;
    height: 28px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    text-align: center;
    outline: none;
}

.salary-input:focus {
    border-color: #ce2318;
}

.salary-unit,
.salary-month {
    font-size: 14px;
    color: #666;
}

.salary-separator {
    font-size: 14px;
    color: #999;
}

.salary-confirm-btn {
    padding: 4px 16px;
    background: #ce2318;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.salary-confirm-btn:hover {
    background: #a01818;
}

/* 更多筛选下拉框 */
.filter-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-select {
    min-width: 120px;
    height: 32px;
    padding: 0 30px 0 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23999" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-select:hover {
    border-color: #ce2318;
}

.filter-select:focus {
    border-color: #ce2318;
}

/* 已选择条件 */
.selected-filters-group {
    border-bottom: none !important;
}

.selected-filters {
    flex: 1;
}

.selected-filter-item {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: #fff4f4;
    border: 1px solid #ce2318;
    border-radius: 2px;
    font-size: 14px;
    color: #ce2318;
    margin-right: 8px;
    margin-bottom: 8px;
}

.selected-filter-item .remove-filter {
    margin-left: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #ce2318;
    font-weight: bold;
}

.selected-filter-item .remove-filter:hover {
    color: #a01818;
}

.clear-filters {
    color: #ce2318;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 20px;
    margin-top: 8px;
}

.clear-filters:hover {
    text-decoration: underline;
}

/* 专业选择弹窗 */
.major-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.major-modal.show {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 90%;
    height: 600px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.modal-search {
    flex: 1;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    outline: none;
}

.modal-search:focus {
    border-color: #ce2318;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.major-categories {
    width: 180px;
    border-right: 1px solid #e5e5e5;
    overflow-y: auto;
    background: #f5f5f5;
}

.major-category-item {
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.major-category-item:hover {
    background: #fff;
}

.major-category-item.active {
    background: #fff;
    color: #ce2318;
    border-left: 3px solid #ce2318;
}

.major-subcategories {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.major-subcategory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.major-subcategory-item {
    padding: 8px 16px;
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.major-subcategory-item:hover {
    background: #fff4f4;
    border-color: #ce2318;
    color: #ce2318;
}

.major-subcategory-item.selected {
    background: #fff4f4;
    border-color: #ce2318;
    color: #ce2318;
}

.filter-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.reset-btn,
.publish-btn {
    padding: 8px 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.reset-btn:hover {
    background: #f5f5f5;
}

.publish-btn {
    background: #c92020;
    color: #fff;
    border-color: #c92020;
}

.publish-btn:hover {
    background: #a01818;
}

/* 职位列表 */
.job-list {
    width: 100%;
}

.job-item {
    background: #fff;
    padding: 30px 40px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.job-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.job-left {
    flex: 1;
}

.job-title {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

.job-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* 相邻标签之间的短竖线分隔 */
.job-meta .meta-tag + .meta-tag {
    position: relative;
    padding-left: 12px;
}

.job-meta .meta-tag + .meta-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0.9em; /* 竖线不要太长 */
    background: #ddd;
}

.meta-tag {
    font-size: 16px;
    color: #666;
}

.meta-tag.location {
    color: #ce2318;
}

.meta-tag.salary {
    color: #666;
}

.meta-tag.edu {
    color:#666;
}

.job-welfare {
    font-size: 13px;
    color: #666;
}

.job-right {
    width: 350px;
    flex-shrink: 0;
    text-align: right;
}

.company-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.company-detail {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.job-info {
    font-size: 14px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.page-btn,
.page-num {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background: #f5f5f5;
}

.page-btn:hover:not(:disabled),
.page-num:hover {
    background: #f5f5f5;
    border-color: #c92020;
}

.page-num.active {
    background: #c92020;
    color: #fff;
    border-color: #c92020;
}

.page-dots {
    color: #999;
}

/* 返回顶部 */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #c92020;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.back-to-top:hover {
    background: #a01818;
    transform: translateY(-5px);
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .filter-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-label {
        min-width: auto;
    }
    
    .nav-item {
        padding: 15px 15px;
        font-size: 14px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .logo img {
        width: 30px;
        height: 30px;
    }
    
    .platform-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .main-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .hero-banner {
        padding: 40px 15px 80px;
    }
    
    .nav-menu {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item {
        padding: 12px 15px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .filter-section {
        padding: 15px;
    }
    
    .filter-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-label {
        min-width: auto;
    }
    
    .main-content {
        padding: 0 10px;
        margin: 10px auto;
    }
    
    .job-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .job-right {
        width: 100%;
        text-align: left;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .page-btn,
    .page-num {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .register-btn,
    .login-btn {
        padding: 5px 15px;
        font-size: 12px;
    }
    
    .platform-title {
        font-size: 20px;
    }
    
    .main-title {
        font-size: 22px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 4px;
    }
    
    .search-btn {
        width: 100%;
        padding: 10px;
        border-radius: 0 0 4px 4px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .meta-tag {
        display: inline-block;
        margin-right: 5px;
    }

    /* 移动端纵向排列时隐藏分隔竖线 */
    .job-meta .meta-tag + .meta-tag::before {
        display: none;
    }
}

/* ===================================== */
/* 职位详情页样式 */
/* ===================================== */

/* 详情页专用导航 */
.detail-page .header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}

.detail-page .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.detail-page .logo {
    color: #333;
}

.detail-page .logo img {
    height: 40px;
    background: none;
    border-radius: 0;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e02020;
}

.detail-page .header-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.detail-page .header-link:hover {
    color: #e02020;
}

/* 主要信息横幅 */
.job-banner {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4e9f7 100%);
    padding: 30px 20px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.job-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 15px;
}

.job-banner .job-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.job-salary {
    font-size: 24px;
    color: #e02020;
    font-weight: bold;
}

.job-basic-info {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.info-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-collect {
    padding: 10px 30px;
    background: #fff;
    border: 1px solid #e02020;
    color: #e02020;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-collect:hover {
    background: #fff5f5;
}

.btn-apply {
    padding: 10px 40px;
    background: #e02020;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-apply:hover {
    background: #c01818;
}

.job-tips {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.job-meta-info {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 20px;
}

/* 详情容器 */
.detail-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.detail-main {
    flex: 1;
    min-width: 0;
}

.detail-sidebar {
    width: 350px;
    flex-shrink: 0;
}

/* 职位要求 */
.job-requirements {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.icon-dot {
    width: 6px;
    height: 6px;
    background: #e02020;
    border-radius: 50%;
}

.requirement-item .label {
    color: #666;
}

.requirement-item .value {
    color: #333;
}

/* 职位介绍 */
.job-description {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e02020;
    display: inline-block;
}

.tag-highlight {
    display: inline-block;
    padding: 5px 15px;
    background: #fff0f0;
    color: #e02020;
    border-radius: 3px;
    font-size: 13px;
    margin-bottom: 20px;
}

.desc-section {
    margin-bottom: 25px;
}

.desc-section h3 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.desc-section p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin-bottom: 8px;
}

/* 工作地点 */
.work-location {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.location-text {
    font-size: 14px;
    color: #666;
    line-height: 24px;
}

/* 相关搜索 */
.related-search {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
}

.detail-page .search-box {
    display: flex;
    gap: 10px;
    max-width: none;
    margin: 0;
    border-radius: 4px;
}

.location-select {
    width: 120px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.detail-page .search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.detail-page .search-btn {
    padding: 10px 30px;
    background: #e02020;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.detail-page .search-btn:hover {
    background: #c01818;
}

/* 右侧信息栏 */
.recruiter-card,
.company-card {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.recruiter-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recruiter-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
}

.recruiter-info {
    flex: 1;
}

.recruiter-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.btn-contact {
    padding: 6px 20px;
    background: #e02020;
    border: none;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #c01818;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.more-link {
    font-size: 13px;
    color: #e02020;
    text-decoration: none;
}

.more-link:hover {
    text-decoration: underline;
}

.company-info {
    text-align: center;
}

.company-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
    background: #f0f0f0;
    border-radius: 4px;
}

.detail-page .company-name {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.company-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.company-desc {
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

.promotion-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promotion-img {
    width: 100%;
    border-radius: 4px;
    background: #f0f0f0;
    height: 120px;
    object-fit: cover;
}

/* 底部 */
.footer {
    background: #3a3a3a;
    color: #ccc;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #555;
}

.link-group h4 {
    font-size: 14px;
    color: #fff;
    font-weight: normal;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section.contact p {
    font-size: 13px;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #555;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #666;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* 详情页响应式 - 平板 */
@media (max-width: 1024px) {
    .detail-container {
        flex-direction: column;
    }
    
    .detail-sidebar {
        width: 100%;
    }
    
    .job-requirements {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links,
    .footer-info {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* 详情页响应式 - 手机 */
@media (max-width: 768px) {
    .detail-page .header-container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 15px;
    }
    
    .nav {
        display: none;
    }
    
    .job-banner {
        padding: 20px 15px;
    }
    
    .job-banner .job-title {
        font-size: 24px;
    }
    
    .job-salary {
        font-size: 20px;
    }
    
    .job-basic-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .btn-collect,
    .btn-apply {
        width: 100%;
        justify-content: center;
    }
    
    .detail-container {
        margin: 15px auto;
        padding: 0 15px;
    }
    
    .job-requirements {
        grid-template-columns: 1fr;
    }
    
    .job-description,
    .work-location,
    .related-search {
        padding: 20px;
    }
    
    .detail-page .search-box {
        flex-direction: column;
    }
    
    .location-select {
        width: 100%;
    }
    
    .footer-links,
    .footer-info {
        flex-direction: column;
    }
    
    .link-group,
    .footer-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .job-requirements {
        padding: 15px;
    }
    
    .requirement-item {
        font-size: 13px;
    }
    
    .desc-section p {
        font-size: 13px;
        line-height: 22px;
    }
}
