/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

.logo img {
   
    height: 50px;
}

header h1 {
    color: #1e88e5;
    font-size: 24px;
    margin: 0;
}
/* 汉堡菜单 */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #1e88e5;
    color: white;
}
/* 移动端导航样式 */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        clip-path: circle(0px at 90% -10%);
        -webkit-clip-path: circle(0px at 90% -10%);
        transition: all 0.3s ease-out;
    }
    
    nav.active {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
}
/* 首页英雄区域 */
.hero {
    background: linear-gradient(135deg, #1e88e5, #0d47a1), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 40px 0;
    
    position: relative;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px; /* 添加间距 */
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 200px;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border: 2px solid white;
    border-radius: 8px;
}

.qr-code p {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.phone p {
    margin: 5px 0;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #fff;
    color: #1e88e5;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 特色功能区域 */
.features {
    padding: 40px 0;
}

.features .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    color: #1e88e5;
    margin-bottom: 15px;
}
.feature h3 a {
    text-decoration: none;
    color: #1e88e5;

}

.feature h3 a:hover {
    text-decoration: underline;
}

/* 列表页样式 */
.job-listings {
    padding: 30px 0;
}

.job-listings h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e88e5;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-input, .location-filter, .filter-btn {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.filter-btn {
    background-color: #1e88e5;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-btn:hover {
    background-color: #0d47a1;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.job-item h3 a {
    text-decoration: none;
    color: #1e88e5;
    font-size: 22px;
}

.job-item h3 a:hover {
    text-decoration: underline;
}

.company, .location, .date {
    display: inline-block;
    margin-right: 20px;
    color: #666;
}

.description {
    margin-top: 15px;
    color: #555;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination a {
    text-decoration: none;
    color: #fff;
   
}

.pagination a:hover {
    text-decoration: underline;
}
.prev-btn, .next-btn {
    padding: 10px 20px;
    background-color: #1e88e5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #0d47a1;
}

.page-info {
    color: #666;
}
.page-info a{color: #666;}
.job-listings {
    padding: 60px 0;
    background-color: #f5f5f5;
    padding-top:0;
}

.job-listings .container {
    max-width: 1200px;
}

.job-listings h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.view-all {
    text-align: center;
    margin-top: 25px;
}

/* 详情页样式 */
.job-detail {
    padding: 30px 0;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    text-decoration: none;
    color: #1e88e5;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.job-header {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
}

.job-header h2 {
    color: #1e88e5;
    margin-bottom: 15px;
}

.job-header .company {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.job-header .location, .job-header .date {
    display: inline-block;
    margin: 0 15px;
    color: #666;
}

.job-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.job-section {
    margin-bottom: 20px;
}

.job-section h3 {
    color: #1e88e5;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.job-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

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

.apply-section {
    text-align: center;
}

.apply-btn {
    display: inline-block;
    background-color: #1e88e5;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #0d47a1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
footer p a{color: #fff;}
/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 10px;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-contact {
        min-width: auto;
    }
    nav ul li {
        margin: 0;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .features .container {
        flex-direction: column;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .job-header .location, .job-header .date {
        display: block;
        margin: 10px 0;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
}