:root {
  --primary-color: #4169E1;
  --secondary-color: #6C63FF;
  --accent-color: #FF6B6B;
  --text-color: #333;
  --light-text: #666;
  --bg-color: #fff;
  --light-bg: #f0f5ff;
  --border-color: #e1e4e8;
  --blue-icon: #4169E1;
  --orange-icon: #FF9F43;
  --purple-icon: #6C63FF;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 80%;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}
.article-card-container{
  background-image: url('https://uat.talentseek.io/home/images/blogs-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 12% 40px;
}

.article-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: #4169E1;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.article-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}


.article-image img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.article-info {
    flex: 1;
    min-width: 0;
}

.article-title {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #666;
}

.article-date {
    color: #666;
}

.article-category {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.article-category i {
    font-size: 12px;
}



footer {
  background-image: url('https://uat.talentseek.io/home/images/bottom-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  color: white;
  padding: 60px 0 30px;
}
footer .container {
  padding: 0 12%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 60px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
}

.footer-logo-section img {
  max-width: 245px;
  max-height: 46px;
  object-fit: contain;
  display: block;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-nav {
  flex: 1;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: white;
}

.footer-contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-contact p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-contact p a:hover {
  color: white;
}

.copyright {
  padding-top: 30px;
}

.copyright .container {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 30px;
}

.copyright .record-box {
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}


@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      gap: 40px;
  }
  .footer-logo-section {
      align-items: center;
      text-align: center;
  }
  .footer-nav ul {
      align-items: center;
  }
  .footer-contact {
      align-items: center;
      text-align: center;
  }
  .copyright .record-box {
      text-align: center;
  }
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover:after {
  width: 300px;
  height: 300px;
}

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

/* 导航栏样式 */
header {
  background-color: white;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  /* padding: 0 12%; */
}
.container-left {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  margin-left: 20px;
  align-items: center;
  list-style: none;
}

.nav-menu li {
  margin: 0 20px;
}

.nav-menu a {
  font-weight: 400;
  font-size: 14px;
  color: #333;
  transition: color 0.3s;
  position: relative;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  height: 70px;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: var(--primary-color);
  width: 45px;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu .nav-gift-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  vertical-align: middle;
  display: inline-block;
}
/* Resources 下拉菜单样式 */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  cursor: pointer;
  padding: 0 14px;
}

/* 保持 active 状态的下划线显示，优先级更高 */
.nav-dropdown .nav-link.active:after,
.nav-dropdown .nav-link.active:hover:after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  background-color: var(--primary-color);
  width: 45px !important;
}

/* 点击时隐藏下划线的类（通过 JS 动态添加） */
.nav-dropdown .nav-link.clicked-no-underline:after {
  display: none !important;
}

.nav-dropdown .nav-link .dropdown-arrow {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 2.5px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
  object-fit: contain;
  box-sizing: border-box;
  margin-left: 0;
}

/* 当展开状态（图标为 up）时，添加背景色 */
.nav-dropdown.active .nav-link .dropdown-arrow {
  background: #F7F9FD;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  min-height: 160px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-top: 3px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-item {
  display: flex;
  align-items: flex-start !important;
  width: 100%;
  min-height: 60px;
  padding: 8px 12px !important;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-radius: 4px;
  margin: 0;
}

.dropdown-item:hover {
  background: #F7F9FD;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  border-radius: 2px;
  object-fit: contain;
  margin-top: 2px;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dropdown-title {
  font-family: PingFangSC-Medium, 'PingFang SC', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #17181A;
  margin-bottom: 4px;
}

.dropdown-subtitle {
  font-family: PingFangSC-Regular, 'PingFang SC', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #7C7D81;
}

.blue-btn {
  background-color: #3366ff;
  color: white;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
}

.blue-btn:hover {
  background-color: #2952cc;
}

.blue-btn2 {
  background-color: #3366ff;
  color: white;
  border-radius: 4px;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
}

.blue-btn2:hover {
  background-color: #2952cc;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}


/* 仅针对文章内容区的外链设置主色，无下划线 */
/* 1. 文章正文区域（.section 内的所有外链） */
.section a {
  color: var(--primary-color) !important; /* 仅保留主色 */
  text-decoration: none !important; /* 强制去掉下划线 */
}

/* 2. 文章卡片区域（.article-card 内的外链） */
.article-card .article-content a,
.article-card .article-info a {
  color: var(--primary-color) !important; /* 仅保留主色 */
  text-decoration: none !important; /* 强制去掉下划线 */
}

/* 3. 排除页脚外链（保持原有样式） */
.footer-content a,
.copyright a {
  color: inherit !important;
  text-decoration: underline !important; /* 保留页脚原有下划线，不影响 */
}

h1, h2, h3, h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

h1 {
  font-size: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
}

h2 {
  font-size: 20px;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

h3 {
  font-size: 18px;
  margin-top: 30px;
}

h4 {
  font-size: 16px;
  margin-top: 25px;
  font-weight: 500;
}

p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}


ul, ol {
  /* list-style: none; */
  margin-left: 25px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 16px;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  font-weight: 600;
  background-color: #f9f9f9;
}

pre {
  background-color: #f8f9fa;
  padding: 15px;
  overflow-x: auto;
  margin: 20px 0;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.5;
}

.highlight {
  font-weight: 600;
}

.section {
  margin-bottom: 40px;
  padding: 0px 12% 40px;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #ccc;
  font-style: italic;
  color: #666;
  background-color: #F3F6F7;
  overflow: hidden;
}


.content-intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.key-point {
  padding: 20px;
  margin: 30px 0;
  background-color: #f8f9fa;
}


.step-list {
  counter-reset: step-counter;
  margin-left: 25px;
}

.step-list li {
  list-style-type: none;
  counter-increment: step-counter;
  margin-bottom: 15px;
  position: relative;
  padding-left: 0; /* 取消为前缀预留的缩进 */
  line-height: 1.6;
}

.step-list li:before {
  content: none; /* 去掉“Step n:” */
}

.note {
  font-style: italic;
  color: #666;
  margin-top: 10px;
  padding-left: 30px;
  display: block;
}


.process-flow {
  margin: 20px 0;
  padding: 15px;
  border-left: 3px solid #ddd;
}

.process-step {
  margin-bottom: 15px;
  position: relative;
  padding-left: 0; /* 取消为箭头预留的缩进 */
  line-height: 1.6;
}

.process-step:before {
  content: none; /* 去掉“→” */
}
