
/* 人才库页面特定样式 */
.talent-library-page {
    background: #F9FAFB;
    min-height: 100vh;
}

/* 注意：.main 类已经在 public.css 中设置了 padding-top: 85px */

/* 标题区域 */
.talent-hero-section {
	padding: 80px 0 50px;
}

.talent-hero-title {
    font-family: Source Han Sans;
    font-size: 50px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
}

.talent-hero-subtitle {
    font-family: Source Han Sans;
    font-size: 22px;
    font-weight: normal;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* 搜索框区域 */
.talent-search-box {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.talent-search-input {
    flex: 1;
    height: 60px;
    padding: 0 20px 0 50px;
    border: none;
    border-radius: 10px;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    color: #1D2129;
    background: #FFFFFF;
    background-image: url("../icon/search.png");
    background-repeat: no-repeat;
    background-position: left 18px center;
    background-size: 20px;
}

.talent-search-input:focus {
    outline: none;
}

.talent-search-input::placeholder {
    color: #86909C;
}

.talent-search-btn {
    width: 120px;
    height: 60px;
    background: #165DFF;
    border: none;
    border-radius: 0 10px 10px 0;
    font-family: Source Han Sans;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.3s;
}

.talent-search-btn:hover {
    background: #0E4FD9;
}

/* 热门搜索 */
.talent-hot-searches {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

.hot-search-label {
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: normal;
    color: #86909C;
    white-space: nowrap;
}

.hot-search-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hot-search-tag {
    padding: 0 16px;
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
    background: #fff;
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: normal;
    color: #1F2937;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.hot-search-tag:hover {
    background: #165DFF;
    color: #FFFFFF;
}

/* 筛选区域 */
.talent-section{
	padding:0;
}

.talent-filter-wrapper {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 30px 40px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
}

.talent-filter-group {
    display: flex;
    align-items: flex-start;
	flex-direction: column;
    gap: 20px;
}

.talent-filter-label {
    width: 100px;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    color: #4B5563;
    white-space: nowrap;
    padding-top: 8px;
}

.talent-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}

.talent-filter-option {
    padding: 0 18px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background: #F5F6F7;
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: normal;
    color: #1F2937;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.talent-filter-option:hover {
    background: #E5E6EB;
}

.talent-filter-option.active {
    background: #165DFF;
    color: #FFFFFF;
}

.talent-filter-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 100px;
    padding-top: 8px;
}

.talent-sort-option {
    padding: 8px 16px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background: #F5F6F7;
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: normal;
    color: #1F2937;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.talent-sort-option:hover {
    background: #E5E6EB;
}

.talent-sort-option.active {
    background: #165DFF;
    color: #FFFFFF;
}

/* 人才列表区域 */
.talent-list-section {
    padding: 30px 0 60px;
}

/* 分页控件 */
.talent-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.talent-page-btn {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #E5E6EB;
    background: #FFFFFF;
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: normal;
    color: #4B5563;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.talent-page-btn:hover {
    border-color: #165DFF;
    color: #165DFF;
}

.talent-page-btn.active {
    background: #165DFF;
    border-color: #165DFF;
    color: #FFFFFF;
}

.talent-page-ellipsis {
    padding: 0 8px;
    font-family: Source Han Sans;
    font-size: 14px;
    color: #86909C;
}

/* 人才库卡片网格 - 2列布局 */
.talent-library-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* 人才库卡片样式 */
.talent-library-card {
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0px 18px 42px rgba(12, 38, 84, 0.12);
    position: relative;
    border: 1px solid #E5E6EB;
}
.talent-library-card-header-wrapper{
    position: relative;
	padding:25px 12px;
}
.talent-library-card-body-wrapper{
	padding:0 17px 20px 17px;
}

/* 人才卡片头部布局 */
.talent-library-card-header-top {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 10px;
}

.talent-library-card-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.talent-library-card-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.talent-skill-tag {
	padding: 0 14px;
	height: 33px;
	line-height: 33px;
	border-radius: 30px;
	background: rgba(22, 93, 255, 0.05);
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	color: #0F358D;
	white-space: nowrap;
}

.talent-library-card-bio-title {
	font-family: Source Han Sans;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 10px;
}

.talent-contact-icon {
	width: 16px;
	height: 16px;
	margin-right: 4px;
}

/* 结果头部 */
.talent-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 0 15px;
}

.talent-results-count {
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
}

.talent-results-number {
	color: #165DFF;
	font-weight: bold;
}

.talent-sort-select-wrapper {
	position: relative;
	display: inline-block;
}

.talent-sort-select {
	padding: 8px 30px 8px 12px;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	background: #FFFFFF;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.talent-sort-arrow {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 11px;
	pointer-events: none;
}

/* 查看更多按钮 */
.talent-more-section {
	text-align: center;
	margin-top: 40px;
	padding: 20px 0;
}

.talent-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 40px;
	border: 1px solid #165DFF;
	border-radius: 10px;
	background: #FFFFFF;
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	color: #165DFF;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s;
}

.talent-more-btn:hover {
	background: #165DFF;
	color: #FFFFFF;
}

.talent-more-btn img {
	width: 26px;
	height: 26px;
}
.talent-library-card-header {
    display: flex;
	flex-direction: column;
}

.talent-library-card-name {
    font-family: Source Han Sans;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}
.talent-tags{
    justify-content: flex-start;
}
.talent-library-card-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
	gap: 6px;
	width: 120px;
    height: 40px;
    border-radius: 10px;
	border: 1px solid #165DFF;
	background: #FFFFFF;
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: normal;
    color: #165DFF;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.talent-library-card-contact:hover {
	background: #165DFF;
	color: #FFFFFF;
}

.talent-library-card-contact:hover .talent-contact-icon {
	filter: brightness(0) invert(1);
}

.talent-library-card-contact .talent-contact-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.talent-library-card-body {
    display: flex;
    flex-direction: column;
	background: rgba(245, 247, 250, 0.6);
	padding:17px 11px;
}

.talent-library-card-specialization {
    font-family: Source Han Sans;
    font-size: 18px;
    font-weight: normal;
	color: #86909C;
    margin: 5px 0;
}

.talent-library-card-bio {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    color: #505E71;
    line-height: 1.8;
}

.talent-view-profile {
    font-family: Source Han Sans;
    font-size: 12px;
    font-weight: normal;
    color: #165DFF;
    text-decoration: none;
    margin: 10px 0;
    display: inline-block;
}

.talent-view-profile:hover {
    text-decoration: underline;
}
.talent-library-card-avatar{
	position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #F5F7FA;
    padding:5px;
    background:#fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.07);
}
.talent-library-card-avatar img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.talent-library-card-avatar.on::after{
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    background: url(../icon/yes.png) no-repeat center center;
    background-size: 100% 100%;
	background-color: #fff;
	border-radius: 50%;
    position: absolute;
    bottom: 0;
    right:10px;
}
/* 近期案例区域 */
.talent-library-cases {
    margin-top: 15px;
}

.talent-library-cases-title {
    font-family: Source Han Sans;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}
.talent-library-cases-grid{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.talent-library-case-item {
    position: relative;
    width: 210px;
    min-width: 0;
    border-radius: 8px;
}

.talent-library-case-item img {
    width: 100%;
	height:160px;
    border-radius: 8px;
    object-fit: cover;
}

.talent-library-case-caption {
    color: #505E71;
    font-size: 14px;
    padding: 8px 0;
    font-family: Source Han Sans;
}
/* ============================================
   人才详情页面样式 - 按模块组织
   ============================================ */

/* ============================================
   模块1: 页面基础样式
   ============================================ */
   .talent-detail-page {
	background: #F9FAFB;
	padding-bottom: 60px;
}

/* ============================================
   模块3: 工程师资料区域
   ============================================ */
.talent-profile-section {
	background: #FFFFFF;
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}
.talent-profile-info-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.talent-profile-header {
	display: flex;
	align-items: flex-start;
	gap: 44px;
	margin-bottom: 30px;
}

.talent-profile-avatar-wrapper {
	position: relative;
	flex-shrink: 0;
}

.talent-profile-avatar {
	width: 200px;
	height: 250px;
	border-radius: 20px;
	object-fit: cover;
	border: 3px solid #FFFFFF;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.talent-profile-avatar-wrapper.on::after{
	content: '';
	display: block;
	width: 41px;
	height: 41px;
    border-radius: 50%;
	background: url(../icon/yes.png) no-repeat center center;
	background-size: 100% 100%;
    background-color: #fff;
	position: absolute;
    bottom:-5px;
    right:-10px;
}


.talent-profile-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.talent-profile-name-row-left{
	display: flex;
	align-items: center;
	gap: 10px;
}
.talent-profile-name-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.talent-profile-name {
	font-family: Source Han Sans;
	font-size: 35px;
	font-weight: bold;
	color: #000000;
    max-width: 300px;
}

.talent-profile-tags {
	display: flex;
	align-items: center;
	gap: 10px;
}

.talent-profile-tag {
	padding: 6px 14px;
	height: 31px;
	line-height: 31px;
	border-radius: 30px;
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.talent-profile-tag.verified {
	color: #165DFF;
	background: #DDEAFD;
}

.talent-profile-tag.verified::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../icon/talent-icon1.png) no-repeat center center;
	background-size: 16px 16px;
}

.talent-profile-tag.deposit {
	color: #078441;
	background: #DEFCE8;
}

.talent-profile-tag.deposit::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../icon/talent-icon2.png) no-repeat center center;
	background-size: 16px 16px;
}

.talent-profile-specialization {
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	color: #86909C;
}

.talent-profile-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.talent-profile-skill-tag {
	padding: 0 14px;
	height: 33px;
	line-height: 33px;
	border-radius: 30px;
	background: rgba(22, 93, 255, 0.05);
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	color: #0F358D;
}

.talent-profile-bio {
	font-family: Source Han Sans;
	font-size: 18px;
	font-weight: normal;
	color: #505E71;
	line-height: 1.8;
}
.talent-profile-bio-title{
	font-family: Source Han Sans;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
}

.talent-profile-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 20px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #165DFF;
	background:#165DFF;
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}
.talent-profile-contact-btn::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url(../icon/contact3.png) no-repeat center center;
	background-size: 100% 100%;
}
.talent-profile-info-footer{
	display: flex;
	align-items: center;
	justify-content:flex-start;
	gap: 30px;
}
.talent-profile-info-footer .talent-profile-info-footer-item{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	width: 251px;
	height: 99px;
	border-radius: 10px;
	background: #F2F3F5;
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	color: #6B7280;
}
.talent-profile-info-footer .talent-profile-info-footer-item p{
	font-family: Source Han Sans;
	font-size: 30px;
	font-weight: bold;
	color: #165DFF;
}
.talent-profile-info-footer .talent-profile-info-footer-item.last-item p{
	font-size: 20px;
}
/* ============================================
   模块4: 标签页导航
   ============================================ */
.talent-tabs {
	padding: 0 25px;
	margin-bottom: 0;
    border-bottom: 2px solid #E5E6EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.talent-tabs-list {
	display: flex;
	align-items: center;
	gap: 60px;
}

.talent-tab-item {
	padding: 20px 0;
	font-family: Source Han Sans;
	font-size: 18px;
	font-weight: normal;
	color: #86909C;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all 0.3s;
	text-decoration: none;
	display: block;
}

.talent-tab-item:hover {
	color: #165DFF;
}

.talent-tab-item.active {
	color: #165DFF;
	border-bottom-color: #165DFF;
	font-weight: bold;
}

.talent-tab-content {
	padding: 45px 0;
}

.talent-tab-pane {
	display: none;
}

.talent-tab-pane.active {
	display: block;
}

/* ============================================
   模块5: 作品集筛选和排序
   ============================================ */
.portfolio-filters {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 20px;
    padding:0 15px;
}

.portfolio-filter-buttons {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.portfolio-filter-btn {
	padding: 0 20px;
	height: 36px;
	line-height: 36px;
	border-radius: 18px;
	background: #FFFFFF;
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	white-space: nowrap;
}

.portfolio-filter-btn:hover {
	background: #E5E6EB;
}

.portfolio-filter-btn.active {
	background: #165DFF;
	color: #FFFFFF;
}

.portfolio-sort {
	display: flex;
	align-items: center;
	gap: 10px;
}

.portfolio-sort-label {
	font-family: Source Han Sans;
	font-size: 14px;
	color: #666666;
	white-space: nowrap;
}

.portfolio-sort-select {
	padding: 8px 30px 8px 12px;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	background: #FFFFFF;
	background-image: url("../icon/down.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.portfolio-sort-select:focus {
	border-color: #165DFF;
	outline: none;
}

/* ============================================
   模块6: 作品集卡片网格
   ============================================ */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.portfolio-card {
	background: #FFFFFF;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
}

.portfolio-card:hover {
	transform: translateY(-5px);
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.12);
}

.portfolio-card-image {
	position: relative;
	width: 100%;
	padding-top: 75%; /* 4:3 比例 */
	background: #F5F6F7;
	overflow: hidden;
}

.portfolio-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-card-tag {
	position: absolute;
	top: 19px;
	right: 15px;
	padding: 4px 12px;
	background: #fff;
	border-radius: 15px;
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	color: #6B7280;
}

.portfolio-card-body {
	padding: 20px 12px;
}

.portfolio-card-title {
	font-family: Source Han Sans;
	font-size: 25px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 10px;
}

.portfolio-card-description {
	font-family: Source Han Sans;
	font-size: 18px;
	font-weight: normal;
	color: #6B7280;
	line-height: 1.6;
}

.portfolio-card-meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	padding-top:20px;
}

.portfolio-card-date,
.portfolio-card-views {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: Source Han Sans;
	font-size: 20px;
	font-weight: normal;
	color: #6B7280;
}

.portfolio-card-date::before {
	content: '';
	display: inline-block;
	width: 23px;
	height: 23px;
	background: url(../icon/rili1.png) no-repeat center center;
	background-size: 100% 100%;
}

.portfolio-card-views::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url(../icon/eye.png) no-repeat center center;
	background-size: 100%;
	opacity: 0.6;
}

/* ============================================
   模块7: 查看更多按钮
   ============================================ */
.portfolio-more {
	text-align: center;
	padding: 20px 0;
}

.portfolio-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 40px;
	border: 1px solid #165DFF;
	border-radius: 10px;
	background: #FFFFFF;
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	color: #165DFF;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s;
}

.portfolio-more-btn:hover {
	background: #165DFF;
	color: #FFFFFF;
}

.portfolio-more-btn::after {
	content: '→';
	font-size: 18px;
}

/* ============================================
   模块8: 基本信息模块
   ============================================ */
.basic-info-section {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.base-info-card {
	background: #FFFFFF;
	border-radius: 18px;
	padding: 30px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

.base-info-row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 13px 0;
}

.base-info-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.base-info-row.align-top {
	align-items: flex-start;
}

.base-info-label {
	font-family: Source Han Sans;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

.base-info-value {
	font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    color: #3D3D3D;
}

.base-info-text {
	flex: 1;
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	color: #4B5563;
	line-height: 1.8;
}

.experience-title {
	font-family: Source Han Sans;
    font-size: 25px;
    font-weight: bold;
    color: #000000;
	margin-bottom: 34px;
    margin-top: 20px;
}

.experience-list {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.experience-card {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 24px;
	border-left: 6px solid #165DFF;
}

.experience-card.orange {
	background: #FFFFFF;
	border-left-color: #FF9F43;
}

.experience-card-header {
	display: flex;
	justify-content: space-between;
    align-items: center;
	gap: 20px;
	margin-bottom: 15px;
	font-family: Source Han Sans;
	color: #111827;
}

.experience-card-header .title {
	font-family: Source Han Sans;
    font-size: 25px;
    font-weight: normal;
    color: #000000;
	margin-bottom: 4px;
}
.experience-card-header .title::after{
    content: '';
    display: inline-block;
    width: 2px;
    height: 20px;
    background: #D8D8D8;
    margin:0 10px;
}
.experience-card-header .title:last-child::after{
    display: none;
}
.experience-card-header-left{
    display: flex;
    align-items: center;
}

.experience-time {
	font-family: Source Han Sans;
    font-size: 25px;
    font-weight: normal;
    color: #86909C;
	white-space: nowrap;
}

.experience-desc-label {
	font-family: Source Han Sans;
    font-size: 22px;
    font-weight: normal;
    color: #505E71;
	margin-bottom: 10px;
}

.experience-desc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.experience-desc-list li {
	position: relative;
	padding-left: 16px;
	font-family: Source Han Sans;
    font-size: 22px;
    font-weight: normal;
    color: #3D3D3D;
	line-height: 1.7;
}

.experience-card.orange .experience-desc-list li::before {
	background: #FF9F43;
}

