body{
    background-color: #f5f5f5;
}

.banner-section{
    margin-top: 80px;
    /* height: 600px; */
    position: relative;
}
.banner-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-container img {
    width: 100%;
    object-fit: cover;
}

.main-content{
    scroll-margin-top: 160px;
}

/* 按钮样式 */
.banner-buttons {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 100;
}

.banner-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 60px;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.banner-btn.active {
    background-color: #e60012 !important;
    color: #fff;
    border: 1px solid #e60012;
}

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

/* 主要内容区域 */
.main-content {
    padding: 60px 0;
    max-width: 1226px;
    margin: 0 auto;
    margin-top: 30px;
}

/* 招聘信息头部 */
.job-header {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #e60012;
}

.job-contact {
    font-size: 16px;
    color: #333;
}

.contact-email {
    color: #e60012;
    font-weight: bold;
    text-decoration: none;
}

/* 招聘列表样式 */
.job-list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.job-list-header, .job-item-header {
    display: flex;
    padding: 15px 0;
    position: relative;
}

.job-list-header {
    background-color: #f2f2f2;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.job-item-header {
    cursor: pointer;
}

.job-column {
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.job-position {
    flex: 2;
}

.job-count, .job-education, .job-date, .job-deadline {
    flex: 1;
    text-align: center;
    justify-content: center;
}

/* 职位项样式 */
.job-item {
    border-bottom: 1px solid #eee;
}

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

.job-toggle {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
}

.job-item-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.job-item.active .job-item-content {
    padding: 20px;
    max-height: 1000px;
}

.job-item.active .job-item-header {
    background-color: #f5f5f5;
}

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

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

.job-section ul {
    padding-left: 20px;
    margin: 0;
}

.job-section li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #666;
}

@media (max-width: 1024px) {
    .banner-btn {
        width: 150px;
        height: 50px;
        font-size: 16px;
    }
    
    .banner-buttons {
        bottom: -25px;
    }
    
    .main-content {
        padding: 50px 20px;
        margin-top: 25px;
    }
    
    .job-position {
        flex: 1.5;
    }
    
    .job-section li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .banner-section{
        margin-top: 60px;
        height: 100px;
        position: relative;
    }
    
    .banner-btn {
        width: 120px;
        height: 45px;
        font-size: 14px;
    }
    
    .banner-buttons {
        bottom: -22px;
        gap: 15px;
    }
    
    .main-content {
        padding: 40px 15px;
        margin-top: 22px;
    }
    
    .job-list-header, .job-item-header {
        font-size: 14px;
    }
    
    .job-date, .job-deadline {
        display: none;
    }
    
    .job-position {
        flex: 1.2;
    }
    
    .job-count, .job-education {
        flex: 0.8;
    }
    
    .job-section h3 {
        font-size: 15px;
    }
    
    .job-section li {
        font-size: 13px;
    }
}