/* 顶部横幅 */
.join-banner {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/join-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.join-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.join-banner p {
    font-size: 24px;
    opacity: 0.9;
}

/* 公司文化 */
.company-culture {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.culture-item {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.culture-item:hover {
    transform: translateY(-10px);
}

.culture-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.culture-item .icon img {
    width: 100%;
    height: 100%;
}

.culture-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

/* 福利待遇 */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* 职位列表 */
.job-list {
    padding: 80px 0;
    background: #fff;
}

.job-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.category {
    padding: 10px 30px;
    margin: 0 10px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}

.category.active {
    color: #ff6b81;
}

.category.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b81;
}

.job-items {
    display: grid;
    gap: 30px;
}

.job-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-header h3 {
    font-size: 24px;
    color: #333;
}

.salary {
    color: #ff6b81;
    font-size: 20px;
    font-weight: bold;
}

.job-meta {
    margin-bottom: 20px;
}

.job-meta span {
    color: #666;
    margin-right: 20px;
}

.job-detail {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
}

.job-detail h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.job-detail ul {
    list-style: none;
    margin-bottom: 20px;
}

.job-detail li {
    color: #666;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.job-detail li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b81;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: #ff6b81;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-btn:hover {
    background: #ff4757;
}

/* 简历投递 */
.resume-upload {
    padding: 80px 0;
    background: #f8f9fa;
}

.upload-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.upload-box {
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.upload-box:hover {
    border-color: #ff6b81;
}

.upload-box input[type="file"] {
    display: none;
}

.upload-icon {
    font-size: 36px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.upload-tip {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff6b81;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #ff4757;
}

/* 办公环境 */
.office-environment {
    padding: 80px 0;
    background: #fff;
}

.environment-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-container {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}

.slider-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #ff6b81;
} 