@charset "utf-8";
#job-list .bg-slideup .image {
    background-image: url(../images/img9.jpg);
}
/* ============================================================
   岗位展示页面样式 - Job Page Styles
   ============================================================ */

/* Section */
.job-section {
	padding: 100px 7vw 80px;
	min-height: 100vh;
	font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}

/* 容器布局 */
.job-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

/* 左侧标题区 */
.job-header {
	position: sticky;
	top: 120px;
	width: 330px;
	flex-shrink: 0;
}

.job-header h2 {
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 2rem;
	color: #1a1a1a;
	letter-spacing: 0.02em;
}

.job-subtitle {
	margin: 0 0 0.5rem 0;
	font-size: 1.5rem;
}

.job-subtitle i {
	color: #4ecdc4;
	font-size: 0.85em;
}

/* 右侧岗位列表 */
.job-list {
	flex: 1;
	min-width: 0;
}

/* 岗位项 */
.job-item {
	border-bottom: 1px solid #e0e0e0;
	transition: border-color 0.3s ease, opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	border-radius: 0;
	padding: 0 16px;
	margin-bottom: 4px;
}

.job-item:first-child {
	border-top: none;
}

.job-item:hover {
	border-color: transparent;
	box-shadow: 0 8px 30px rgba(78, 205, 196, 0.15);
}


/* 岗位标题行 */
.job-item-header {
	display: flex;
	align-items: center;
	padding: 24px 0 6px 0;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
}

.job-item-header:hover .job-title {
	color: #4ecdc4;
}

/* 自定义复选框 */
.job-checkbox {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin-right: 20px;
	flex-shrink: 0;
	cursor: pointer;
}

.job-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	cursor: pointer;
}

.job-checkbox .checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-radius: 4px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.job-checkbox input:checked~.checkmark {
	background: #4ecdc4;
	border-color: #4ecdc4;
}

.job-checkbox input:checked~.checkmark::after {
	content: '';
	position: absolute;
	left: 4px;
	top: -1px;
	width: 6px;
	height: 11px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.job-checkbox:hover .checkmark {
	border-color: #4ecdc4;
	box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

/* 岗位名称 */
.job-title {
	flex: 1;
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	transition: color 0.3s ease;
	letter-spacing: 0.02em;
}

/* 展开/收起按钮 */
.job-toggle {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	flex-shrink: 0;
	color: #999;
	font-size: 1rem;
}

.job-toggle i {
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-item.active .job-toggle {
	color: #999;
	background: transparent;
}

.job-item.active .job-toggle i {
	/* fa-minus通过JS切换 */
}

.job-item.active .job-title {
	color: #4ecdc4;
}

/* 岗位标签 - 默认展示 */
.job-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 0 16px 42px;
}

.job-label {
	cursor: pointer;
	display: inline-block;
	padding: 4px 14px;
	font-size: 0.7rem;
	color: #666;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	white-space: nowrap;
	line-height: 1.6;
	transition: all 0.25s ease;
	background: #eee;
}

.job-label:hover {
	cursor: pointer;
	border-color: #4ecdc4;
	color: #4ecdc4;
}

/* 岗位详情折叠区域 */
.job-item-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.4s ease;
	opacity: 0;
}

.job-item.active .job-item-body {
	opacity: 1;
}

.job-detail {
	padding: 0 0 20px 42px;
}

/* 岗位描述 - 默认显示两行 */
.job-desc {
	margin: 0 0 14px;
	font-size: 0.85rem;
	line-height: 1.8;
	color: #555;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 查看详情链接 */
.job-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: #4ecdc4;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 6px 0;
}

.job-link:hover {
	color: #3dbdb5;
	gap: 10px;
	text-decoration: none;
	opacity: 1;
}

.job-link i {
	font-size: 0.75rem;
	transition: transform 0.3s ease;
}

.job-link:hover i {
	transform: translateX(4px);
}

/* 已选岗位悬浮栏 */
.job-selected-bar {
	position: fixed;
	bottom: -120px;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-selected-bar.show {
	bottom: 0;
}

.bar-content {
	max-width: 600px;
	margin: 0 auto 20px;
	padding: 16px 30px;
	background: rgba(30, 30, 30, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.bar-text {
	color: #fff;
	font-size: 0.95rem;
}

.bar-text strong {
	color: #4ecdc4;
	font-size: 1.2rem;
	margin: 0 4px;
}

.bar-btn {
	cursor: pointer;
	display: inline-block;
	padding: 10px 28px;
	background: #4ecdc4;
	color: #1a1a1a;
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.05em;
}

.bar-btn:hover {
	background: #3dbdb5;
	transform: scale(1.05);
	text-decoration: none;
	opacity: 1;
}

/* .job-section .image {
    background-image: url(../images/bay2c32v.png);
} */

/* ============================================================
   响应式 - 平板
   ============================================================ */
@media screen and (max-width: 900px) {
	.job-container {
		flex-direction: column;
		gap: 10px;
	}

	.job-header {
		position: static;
		width: 100%;
	}

	.job-header h2 {
		font-size: 2rem;
	}
}

/* ============================================================
   响应式 - 手机端
   ============================================================ */
@media screen and (max-width: 600px) {
	.job-section {
		padding: 40px 1vw 40px;
	}

	.job-header h2 {
		font-size: 1.8rem;
	}

	.job-subtitle {
		font-size: 1.3rem;
	}

	.job-item-header {
		padding: 18px 0;
	}

	.job-checkbox {
		margin-right: 14px;
	}

	.job-title {
		font-size: 1rem;
	}

	.job-toggle {
		width: 30px;
		height: 30px;
		font-size: 0.85rem;
	}

	.job-detail {
		padding: 0 0 20px 36px;
	}

	.job-labels {
		padding: 0 0 6px 36px;
		gap: 8px;
	}

	.job-label {
		padding: 3px 10px;
		font-size: 0.72rem;
	}

	.bar-content {
		margin: 0 12px 12px;
		padding: 14px 20px;
		border-radius: 40px;
	}

	.bar-text {
		font-size: 0.85rem;
	}

	.bar-btn {
		padding: 8px 20px;
		font-size: 0.82rem;
	}
}


/* ============================================================
   岗位详情页 - Info Page Styles
   ============================================================ */

/* 详情容器 */
.job-info {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 0;
}

/* 标题区 */
.info-header {
	margin-bottom: 36px;
	padding-bottom: 24px;
	border-bottom: 1px solid #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.info-header-left {
	flex: 1;
	min-width: 0;
}

.info-salary {
	font-size: 2rem;
	font-weight: 700;
	color: #4ecdc4;
	white-space: nowrap;
	margin-left: 24px;
	flex-shrink: 0;
}

.info-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	display: block;
	text-align: left;
}

.info-meta {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
	letter-spacing: 0.03em;
}

/* 标签区 */
.info-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.info-tag {
	display: inline-block;
	padding: 5px 14px;
	font-size: 0.8rem;
	color: #555;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	white-space: nowrap;
	line-height: 1.6;
	background: #f7f7f7;
}

/* 内容区块 */
.info-section {
	margin-bottom: 40px;
	color:#666;
}

.info-section-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 20px;
	padding-left: 14px;
	border-left: 4px solid #81e8ed;
	line-height: 0.8;
}

.info-intro {
	font-size: 0.95rem;
	line-height: 1.9;
	color: #444;
	margin: 0 0 24px;
}


.info-list {
	padding: 0 0 0 20px;
	margin: 0;
}

.info-list li {
	font-size: 0.9rem;
	line-height: 2;
	color: #333;
	margin: 0;
}

/* 投递按钮 */
.info-action {
	margin-top: 48px;
	padding-top: 20px;
}

.info-btn {
	display: inline-block;
	padding: 14px 48px;
	background: #81e8ed;
	color: #323232;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.1em;
	margin-right: 12px;
}


.info-btn-cancel{
	background: #fff;
	border: 1px solid #e0e0e0;
}

.info-btn:hover {
	text-decoration: none;
}
/* 详情页响应式 - 手机端 */
@media screen and (max-width: 600px) {
	.job-info {
		padding: 20px 0;
	}

	.info-title {
		font-size: 1.5rem;
	}

	.info-meta {
		font-size: 0.82rem;
	}

	.info-tags {
		gap: 8px;
		margin-bottom: 24px;
	}

	.info-tag {
		padding: 4px 10px;
		font-size: 1rem;
	}

	.info-section-title {
		font-size: 1.1rem;
	}

	.info-intro,
	.info-list li {
		font-size: 1rem;
	}

	.info-btn {
		padding: 12px 40px;
		font-size: 1rem;
	}
}


/* ============================================================
   投递表单 - Apply Form Styles
   ============================================================ */

.job-form {
	/* max-width: 680px; */
	margin: 0 auto;
	padding: 48px 56px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.form-heading {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
	letter-spacing: 0.02em;
}

.form-subtext {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 40px;
	letter-spacing: 0.03em;
}

.apply-form {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-label {
	font-size: 0.92rem;
	font-weight: 600;
	color: #333;
	letter-spacing: 0.02em;
}

.form-label .required {
	color: #4ecdc4;
	font-weight: 700;
}

.form-label .optional {
	font-size: 0.78rem;
	font-weight: 400;
	color: #bbb;
	margin-left: 6px;
	padding: 2px 8px;
	border: 1px solid #e8e8e8;
	border-radius: 3px;
}

.form-input {
	width: 100%;
	padding: 14px 18px;
	font-size: 0.92rem;
	color: #333;
	background: #f9f9f9;
	border: 1.5px solid #e8e8e8;
	border-radius: 8px;
	outline: none;
	transition: all 0.3s ease;
	font-family: inherit;
	box-sizing: border-box;
}

.form-input:focus {
	border-color: #4ecdc4;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.08);
}

.form-input::placeholder {
	color: #bbb;
}

.form-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
	cursor: pointer;
}

.form-textarea {
	resize: vertical;
	min-height: 100px;
	line-height: 1.7;
}

/* 文件上传区域 */
.form-upload {
	position: relative;
	border: 2px dashed #e0e0e0;
	border-radius: 10px;
	padding: 32px 20px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	background: #fafafa;
}

.form-upload:hover {
	border-color: #4ecdc4;
	background: rgba(78, 205, 196, 0.03);
}

.form-upload input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.upload-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	pointer-events: none;
}

.upload-placeholder i {
	font-size: 1.8rem;
	color: #4ecdc4;
}

.upload-placeholder span {
	font-size: 0.88rem;
	color: #666;
}

.upload-placeholder small {
	font-size: 0.78rem;
	color: #bbb;
}

/* 提交按钮 */
.form-action {
	padding-top: 12px;
	text-align: center;
}
.job-tip h2{
	margin-bottom: 0;
}
.tip-txt{
	text-align: center;
	margin-bottom: 3vw;
}
.red {
	color: #ff4d4f;
}

/* 表单响应式 - 手机端 */
@media screen and (max-width: 600px) {
	.job-form {
		padding: 32px 0px;
		border-radius: 12px;
		box-shadow:none;
	}

	.form-heading {
		font-size: 1.5em;
	}

	.form-subtext {
		margin-bottom: 28px;
	}

	.apply-form {
		gap: 22px;
	}

	.form-input {
		padding: 12px 14px;
	}

	.form-upload {
		padding: 24px 16px;
	}

	.form-submit-btn {
		padding: 14px 32px;
		font-size: 0.95rem;
	}
}