/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.header_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 使用 layui 的 container 样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* 顶部导航 */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-left span {
    color: #666;
}

.top-left a {
    color: #1890ff;
    transition: color 0.3s;
}

.top-left a:hover {
    color: #40a9ff;
}

.top-right {
    display: flex;
    gap: 20px;
}

.top-right a {
    color: #666;
    transition: color 0.3s;
}

.top-right a:hover {
    color: #1890ff;
}

.top-right i {
    margin-right: 4px;
}

/* 主导航 */
.main-header {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo h1 {
    font-size: 28px;
    color: #1890ff;
    font-weight: 700;
    display: none; /* 隐藏文字标题 */
}

.logo span {
    font-size: 14px;
    color: #666;
    display: none; /* 隐藏描述文字 */
}

.logo > div {
    display: none; /* 隐藏包含文字的div容器 */
}

/* 城市选择器样式 */
.city-selector {
    display: inline-block;
    margin-left: 15px;
    position: relative;
}

.city-selector-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1890ff;
    font-size: 14px;
    transition: color 0.3s;
}

.city-selector-trigger:hover {
    color: #40a9ff;
}

.city-selector-trigger i {
    font-size: 12px;
}

.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 450px;
    max-height: 500px;
    overflow-y: auto;
    display: none;
}

.city-dropdown.show {
    display: block;
}

.city-category {
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    font-weight: bold;
}

.city-list {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.city-item {
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    border-radius: 4px;
}

.city-item:hover {
    background-color: #f0f0f0;
}

/* 城市按首字母分类样式 */
.city-letter-group {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.city-letter-title {
    padding: 8px 15px;
    background: #e6f7ff;
    color: #1890ff;
    font-weight: bold;
    font-size: 14px;
    border-left: 3px solid #1890ff;
    min-width: 60px;
    text-align: center;
    margin: 0;
}

.city-letter-group .city-list {
    flex: 1;
    padding: 8px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.selected-city {
    color: #007bff;
}

/* 省份列表样式 */
.province-list {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.province-item {
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    border-radius: 4px;
}

.province-item:hover {
    background-color: #f0f0f0;
}

/* 城市列表区域样式 */
.city-list-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-provinces {
    background: none;
    border: none;
    color: #1890ff;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    transition: color 0.3s;
}

.back-to-provinces:hover {
    color: #40a9ff;
}

/* 入口图标样式 */
.entry-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.entry-icon.blue {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
}

.entry-icon.green {
    background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
}

.entry-icon.orange {
    background: linear-gradient(135deg, #fa8c16 0%, #d46b08 100%);
}

.entry-icon.purple {
    background: linear-gradient(135deg, #722ed1 0%, #531dab 100%);
}

.entry-icon.red {
    background: linear-gradient(135deg, #f5222d 0%, #cf1322 100%);
}

.entry-icon.cyan {
    background: linear-gradient(135deg, #13c2c2 0%, #08979c 100%);
}

.entry-icon.pink {
    background: linear-gradient(135deg, #eb2f96 0%, #c41d7f 100%);
}

.entry-icon.yellow {
    background: linear-gradient(135deg, #fadb14 0%, #d4b106 100%);
}

.entry-icon i {
    font-size: 24px;
    color: white;
}

.entry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.entry-item:hover {
    transform: translateY(-5px);
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.entry-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 15px;
    color: #333;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #1890ff;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #1890ff;
}

/* 数据大屏导航项样式 */
.main-nav .bi-dashboard {
    color: #52c41a; /* 绿色主题，表示数据分析 */
}

.main-nav .bi-dashboard:hover,
.main-nav .bi-dashboard.active {
    color: #1890ff;
}

/* 搜索区域 */
.search-section {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    padding: 50px 0;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.search-tabs span {
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 5px 0;
    font-size: 15px;
    transition: all 0.3s;
}

.search-tabs span.active,
.search-tabs span:hover {
    color: #fff;
    font-weight: 500;
}

.search-input-wrapper {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

.search-btn {
    padding: 0 35px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #ff5252;
}

.hot-keywords {
    margin-top: 15px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.hot-keywords span {
    margin-right: 10px;
}

.hot-keywords a {
    color: rgba(255,255,255,0.9);
    margin-right: 15px;
    transition: color 0.3s;
}

.hot-keywords a:hover {
    color: #fff;
    text-decoration: underline;
}

/* 快捷入口 */
.quick-entry {
    background: #fff;
    padding: 30px 0;
    margin-bottom: 20px;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.entry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.entry-item:hover {
    transform: translateY(-5px);
}

.entry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.entry-icon.blue { background: linear-gradient(135deg, #1890ff, #36cfc9); }
.entry-icon.green { background: linear-gradient(135deg, #52c41a, #95de64); }
.entry-icon.orange { background: linear-gradient(135deg, #fa8c16, #ffc53d); }
.entry-icon.purple { background: linear-gradient(135deg, #722ed1, #b37feb); }
.entry-icon.red { background: linear-gradient(135deg, #f5222d, #ff7875); }
.entry-icon.cyan { background: linear-gradient(135deg, #13c2c2, #5cdbd3); }
.entry-icon.pink { background: linear-gradient(135deg, #eb2f96, #ffadd2); }
.entry-icon.yellow { background: linear-gradient(135deg, #fadb14, #fffb8f); color: #333; }

.entry-item span {
    font-size: 14px;
    color: #333;
}

/* 主要内容区 */
.main-content {
    padding-top: 20px;
    padding-bottom: 40px;
}

.section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* 政策资讯模块顶端间距 */
.policy-section {
    margin-top: 20px;
}

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

.section-header h2 {
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h2 i {
    color: #1890ff;
}

.filter-tabs {
    display: flex;
    gap: 20px;
}

.filter-tabs span {
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.filter-tabs span.active,
.filter-tabs span:hover {
    color: #1890ff;
}

.more {
    color: #999;
    font-size: 13px;
    transition: color 0.3s;
}

.more:hover {
    color: #1890ff;
}

/* 公告列表 */
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
}

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

.tag {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.tag-blue {
    background: #e6f7ff;
    color: #1890ff;
}

.tag-green {
    background: #f6ffed;
    color: #52c41a;
}

.tag-orange {
    background: #fff7e6;
    color: #fa8c16;
}

.announcement-item .title {
    flex: 1;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.announcement-item .title:hover {
    color: #1890ff;
}

.announcement-item .date {
    color: #999;
    font-size: 13px;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
}

.pagination ul {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pagination li {
    margin: 0 2px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #1890ff;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s;
    min-width: 36px;
    text-align: center;
}

.pagination li.active span {
    background: #1890ff;
    color: #fff;
    border-color: #1890ff;
}

.pagination li.disabled span {
    color: #999;
    cursor: not-allowed;
    background: #f5f5f5;
}

.pagination li a:hover:not(.disabled) {
    background: #e6f7ff;
    border-color: #1890ff;
    color: #1890ff;
}

/* 职位列表 */
.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.job-card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #1890ff;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.job-title {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.salary {
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 600;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #666;
}

.job-company i {
    color: #1890ff;
}

.company-type {
    padding: 2px 8px;
    background: #f6ffed;
    color: #52c41a;
    font-size: 12px;
    border-radius: 4px;
}

.job-info {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    color: #999;
    font-size: 13px;
}

.job-info i {
    margin-right: 4px;
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.job-tags .tag {
    background: #f5f5f5;
    color: #666;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.publish-time {
    color: #999;
    font-size: 12px;
}

.apply-btn {
    padding: 6px 20px;
    background: #1890ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-btn:hover {
    background: #40a9ff;
}

/* 双列布局 */
.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.two-column .section {
    margin-bottom: 0;
}

/* 双选会和招聘会 */
.fair-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fair-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    transition: background 0.3s;
}

.fair-item:hover {
    background: #f0f5ff;
}

.fair-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1890ff;
    color: #fff;
    border-radius: 8px;
}

.fair-date .day {
    font-size: 24px;
    font-weight: 700;
}

.fair-date .month {
    font-size: 12px;
}

.fair-info {
    flex: 1;
}

.fair-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
}

.fair-info p {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.fair-info i {
    margin-right: 4px;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status.ongoing {
    background: #f6ffed;
    color: #52c41a;
}

.status.upcoming {
    background: #fff7e6;
    color: #fa8c16;
}

/* 知名企业 */
.company-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.company-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.company-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #1890ff;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1890ff;
    margin-bottom: 12px;
}

.company-card h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.company-card p {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.job-count {
    padding: 3px 10px;
    background: #e6f7ff;
    color: #1890ff;
    font-size: 12px;
    border-radius: 20px;
}

/* 政策资讯 */
.policy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f0;
}

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

.policy-item .dot {
    width: 6px;
    height: 6px;
    background: #1890ff;
    border-radius: 50%;
}

.policy-item .title {
    flex: 1;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.policy-item .title:hover {
    color: #1890ff;
}

.policy-item .date {
    color: #999;
    font-size: 13px;
}

/* 底部 */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

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

.footer-section i {
    margin-right: 8px;
    color: #1890ff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.copyright p {
    margin: 0;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 13px;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 移动端菜单 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: #f0f7ff;
    color: #1890ff;
    border-left: 3px solid #1890ff;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .entry-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .job-list {
        grid-template-columns: 1fr;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .company-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .section {
        padding: 20px;
    }
    
    .search-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    /* 显示移动端菜单按钮 */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* 隐藏桌面端导航 */
    .main-nav {
        display: none;
    }
    
    /* 头部调整 */
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .top-left,
    .top-right {
        gap: 10px;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .logo span {
        font-size: 12px;
    }
    
    /* 搜索区域调整 */
    .search-section {
        padding: 30px 0;
    }
    
    .search-tabs {
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .search-tabs span {
        font-size: 14px;
    }
    
    .search-input {
        padding: 14px 15px;
        font-size: 14px;
    }
    
    .search-btn {
        padding: 0 25px;
        font-size: 14px;
    }
    
    .hot-keywords {
        font-size: 12px;
    }
    
    .hot-keywords a {
        margin-right: 10px;
    }
    
    /* 快捷入口调整 */
    .quick-entry {
        padding: 20px 0;
    }
    
    .entry-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .entry-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .entry-item span {
        font-size: 12px;
    }
    
    /* 内容区域调整 */
    .main-content {
        padding-bottom: 30px;
    }
    
    .section {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 16px;
    }
    
    .filter-tabs {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .filter-tabs span {
        font-size: 13px;
    }
    
    /* 职位卡片调整 */
    .job-card {
        padding: 15px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .job-title {
        font-size: 15px;
    }
    
    .salary {
        font-size: 15px;
    }
    
    .job-info {
        flex-direction: column;
        gap: 8px;
    }
    
    /* 双选会和招聘会调整 */
    .fair-item {
        padding: 12px;
        gap: 12px;
    }
    
    .fair-date {
        width: 50px;
        height: 50px;
    }
    
    .fair-date .day {
        font-size: 20px;
    }
    
    .fair-info h4 {
        font-size: 14px;
    }
    
    .fair-info p {
        font-size: 12px;
    }
    
    /* 企业网格调整 */
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .company-card {
        padding: 20px 10px;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .company-card h4 {
        font-size: 13px;
    }
    
    .company-card p {
        font-size: 11px;
    }
    
    /* 底部调整 */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* 头部进一步调整 */
    .top-bar {
        display: none;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 11px;
    }
    
    /* 搜索区域进一步调整 */
    .search-section {
        padding: 25px 0;
    }
    
    .search-box {
        padding: 0 10px;
    }
    
    .search-tabs {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .search-tabs span {
        font-size: 13px;
    }
    
    .search-input-wrapper {
        flex-direction: column;
    }
    
    .search-input {
        padding: 12px 15px;
        border-radius: 8px 8px 0 0;
    }
    
    .search-btn {
        padding: 12px;
        border-radius: 0 0 8px 8px;
    }
    
    .hot-keywords {
        margin-top: 12px;
        font-size: 11px;
    }
    
    .hot-keywords a {
        margin-right: 8px;
    }
    
    /* 快捷入口调整 */
    .entry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .entry-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .entry-item span {
        font-size: 11px;
    }
    
    /* 内容区域调整 */
    .section {
        padding: 15px 10px;
    }
    
    .section-header h2 {
        font-size: 15px;
    }
    
    .filter-tabs {
        gap: 12px;
    }
    
    .filter-tabs span {
        font-size: 12px;
    }
    
    /* 职位卡片调整 */
    .job-card {
        padding: 12px;
    }
    
    .job-title {
        font-size: 14px;
    }
    
    .salary {
        font-size: 14px;
    }
    
    .job-company {
        font-size: 12px;
        gap: 6px;
    }
    
    .job-info {
        font-size: 11px;
        gap: 6px;
    }
    
    .job-tags {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .job-tags .tag {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .apply-btn {
        padding: 5px 15px;
        font-size: 12px;
    }
    
    /* 双选会和招聘会调整 */
    .fair-item {
        padding: 10px;
        gap: 10px;
    }
    
    .fair-date {
        width: 45px;
        height: 45px;
    }
    
    .fair-date .day {
        font-size: 18px;
    }
    
    .fair-date .month {
        font-size: 11px;
    }
    
    .fair-info h4 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .fair-info p {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    /* 企业网格调整 */
    .company-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .company-card {
        padding: 15px 10px;
    }
    
    .company-logo {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .company-card h4 {
        font-size: 12px;
    }
    
    .company-card p {
        font-size: 10px;
    }
    
    .job-count {
        padding: 2px 8px;
        font-size: 11px;
    }
    
    /* 底部调整 */
    .footer {
        padding: 30px 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 12px;
    }
    
    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
    }
    
    /* 移动端菜单适配 */
    .mobile-menu {
        width: 250px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-menu-header h3 {
        font-size: 16px;
    }
    
    .mobile-menu-nav a {
        padding: 12px 15px;
        font-size: 15px;
    }
}

/* 详情页通用样式 */
.breadcrumb-container {
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 15px 20px;
}

.breadcrumb a {
    color: #1890ff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #40a9ff;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #999;
}

/* 公告详情页样式 */
.announcement-detail-page {
    background: #f5f7fa;
    padding: 20px 0;
}

.announcement-header {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.announcement-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.announcement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.announcement-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.announcement-tags {
    margin-top: 15px;
}

.announcement-body {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.announcement-body .content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.announcement-body .content p {
    margin-bottom: 16px;
}

.related-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.related-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-actions {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

/* 确保公告详情的主要内容垂直堆叠 */
.announcement-header,
.announcement-body,
.related-section,
.detail-actions {
    width: 100%;
    display: block;
    grid-column: 1; /* 确保这些元素都在主列中 */
}

.widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.widget h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget h3 i {
    color: #1890ff;
}

.recent-list {
    list-style: none;
}

.recent-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.recent-item:hover {
    color: #1890ff;
}

.recent-item .title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-item .date {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 6px 12px;
    background: #f5f5f5;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-item:hover {
    background: #1890ff;
    color: #fff;
}

.contact-widget .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #666;
}

.contact-widget .contact-info i {
    color: #1890ff;
    width: 16px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #1890ff;
    color: #fff;
}

.btn-primary:hover {
    background: #40a9ff;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.btn-secondary:hover {
    background: #e8e8e8;
}

.btn-outline {
    background: transparent;
    color: #1890ff;
    border: 1px solid #1890ff;
}

.btn-outline:hover {
    background: #1890ff;
    color: #fff;
}

.btn-large {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
}

/* 首页链接样式 */
.entry-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.job-card-link,
.fair-item-link,
.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.job-card-link:hover .job-card,
.fair-item-link:hover .fair-item,
.company-card-link:hover .company-card {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.entry-item-link:hover .entry-item {
    transform: translateY(-5px);
}

/* 登录注册页样式 */
.auth-page {
    background: #f5f7fa;
    min-height: 100vh;
}

.auth-main {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.auth-banner {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    color: #fff;
    padding: 60px;
}

.banner-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.banner-content > p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.features {
    list-style: none;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.features i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.features p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.auth-form-container {
    padding: 60px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

.form-header .link {
    color: #1890ff;
    text-decoration: none;
    font-weight: 500;
}

.form-header .link:hover {
    text-decoration: underline;
}

.auth-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.form-group label i {
    color: #1890ff;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24,144,255,0.1);
}

.form-group .toggle-password {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: #999;
}

.form-group .toggle-password:hover {
    color: #1890ff;
}

.input-with-btn {
    display: flex;
    gap: 10px;
}

.input-with-btn input {
    flex: 1;
}

.btn-code {
    padding: 0 20px;
    background: #1890ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.btn-code:hover {
    background: #40a9ff;
}

.btn-code:disabled {
    background: #d9d9d9;
    cursor: not-allowed;
}

.input-tip {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.required {
    color: #ff4d4f;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-link {
    font-size: 13px;
    color: #1890ff;
    text-decoration: none;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24,144,255,0.3);
}

.divider {
    margin: 25px 0;
    text-align: center;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e8e8e8;
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 13px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.social-btn.wechat {
    background: #07c160;
}

.social-btn.qq {
    background: #12b7f5;
}

.social-btn.weibo {
    background: #e6162d;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.form-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.form-footer a {
    color: #1890ff;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* 登录方式切换标签 */
.login-tabs {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 25px;
}

.tab-item {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    position: relative;
    transition: all 0.3s;
}

.tab-item:hover {
    color: #1890ff;
}

.tab-item.active {
    color: #1890ff;
    font-weight: 500;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1890ff;
}

/* 扫码登录 */
.qrcode-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.qrcode-container {
    text-align: center;
}

.qrcode-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

.qrcode-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.qrcode-mask p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.qrcode-mask button {
    padding: 8px 20px;
    background: #1890ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.qrcode-mask button:hover {
    background: #40a9ff;
}

.qrcode-tip {
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.qrcode-status {
    color: #999;
    font-size: 12px;
}

/* 登录弹窗 */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.login-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 360px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
}

.login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.login-modal-header h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.login-modal-header .close-btn {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.login-modal-header .close-btn:hover {
    color: #666;
}

.login-modal-body {
    padding: 30px 24px;
    text-align: center;
}

.login-modal-body .qrcode-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

.login-modal-body .qrcode-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-modal-body .qrcode-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.login-modal-body .qrcode-mask p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.login-modal-body .qrcode-mask button {
    padding: 8px 20px;
    background: #07c160;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.login-modal-body .qrcode-mask button:hover {
    background: #06ad56;
}

.login-modal-body .qrcode-tip {
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.login-modal-body .qrcode-status {
    color: #999;
    font-size: 12px;
}

/* 二维码加载动画 */
.login-modal-body .qrcode-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.login-modal-body .qrcode-loading p {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #07c160;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .auth-banner {
        padding: 30px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-content > p {
        font-size: 14px;
    }
    
    .features li {
        gap: 12px;
    }
    
    .features i {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .features h4 {
        font-size: 14px;
    }
    
    .features p {
        font-size: 12px;
    }
    
    .auth-form-container {
        padding: 30px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="password"],
    .form-group input[type="tel"],
    .form-group input[type="email"] {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .input-with-btn {
        flex-direction: column;
    }
    
    .btn-code {
        padding: 10px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .social-login {
        gap: 15px;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    /* 公告详情页在小屏幕上的布局 */
    .detail-content {
        grid-template-columns: 1fr; /* 在小屏幕上变为单列布局 */
        gap: 20px;
    }
    
    .announcement-header,
    .announcement-body,
    .related-section,
    .detail-actions {
        padding: 20px; /* 调整移动端内边距 */
    }
    
    .announcement-title {
        font-size: 20px; /* 调整移动端标题大小 */
    }
}

/* 政策资讯页面样式 */
.policy-list-container {
    margin-top: 20px;
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy-item {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.policy-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    flex: 1;
    min-width: 200px;
}

.policy-title:hover {
    color: #1890ff;
}

.policy-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.policy-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.policy-meta i {
    color: #999;
}

.policy-detail-header {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-detail-header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.policy-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.policy-meta > span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.policy-detail-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-detail-content .content {
    line-height: 1.8;
    color: #555;
}

.policy-additional-info {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-additional-info .info-item {
    display: flex;
    margin-bottom: 10px;
}

.policy-additional-info .info-item:last-child {
    margin-bottom: 0;
}

.policy-additional-info label {
    font-weight: bold;
    color: #333;
    width: 80px;
}

.policy-additional-info span {
    flex: 1;
    color: #666;
}

.policy-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .policy-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .policy-actions {
        flex-direction: column;
    }
    
    .policy-detail-header {
        padding: 15px;
    }
    
    .policy-detail-header h1 {
        font-size: 20px;
    }
    
    .policy-detail-content {
        padding: 20px 15px;
    }
}
