/* ================================
   Common Page Styles
   ================================ */

/* Page Banner */
.page-banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}
.page-banner-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  object-fit: cover;
  z-index: 0;
}
.page-banner-header {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 60px 20px;
}
.page-banner-header .section-header__mark,
.page-banner-header .section-header__title,
.page-banner-header .section-header__desc {
  color: #fff;
}
.page-banner-header .section-header__desc {
  color: rgba(255,255,255,0.8);
}


/* Content Section */
.content-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-section.bg-light {
  background: #f9fbff;
}

/* Area Title Card */
.area-title-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.area-title-bar {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}
.area-title-card h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #222;
  font-family: var(--font-noto);
}

.area-desc {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #666;
  text-align: center;
}

/* Card Row */
.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 20px;
}
.card-row--grid3 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.card-row--grid3 .img-text-card {
  grid-column: span 2;
}
.card-row--grid3 .img-text-card:nth-last-child(2):nth-child(3n+1),
.card-row--grid3 .img-text-card:nth-last-child(2):nth-child(3n+1) + .img-text-card {
  grid-column: span 3;
}
.card-row--grid3 .img-text-card img {
  height: 250px;
}
.card-row--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card-row--2col .img-text-card {
  position: relative;
}
.card-row--2col .img-text-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-row--2col .img-text-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.45);
}
.card-row--2col .img-text-card .card-body h3 {
  color: #fff;
}
.card-row--2col .img-text-card .card-body p {
  color: rgba(255, 255, 255, 0.85);
  min-height: 44px;
}

.card-row--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-row--3col .img-text-card {
  position: relative;
}
.card-row--3col .img-text-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-row--3col .img-text-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.45);
}
.card-row--3col .img-text-card .card-body h3 {
  color: #fff;
}
.card-row--3col .img-text-card .card-body p {
  color: rgba(255, 255, 255, 0.85);
  min-height: 44px;
}

/* Stat Card Row */
.card-row--stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-row--stat .img-text-card{
  display: flex;
  justify-content: center;
}
.card-row--stat .img-text-card .card-body {
  display: flex;
  align-items: center;
  gap: 15px;
  background: none !important;
  text-align: center;
}
.card-row--stat .img-text-card .card-body img {
  width: auto;
  height: auto;
}
.card-row--stat .img-text-card .card-body img.flip-x {
  transform: scaleX(-1);
}
.card-row--stat .img-text-card .card-body h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.card-row--stat .img-text-card .card-body p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Image + Text Card */
.img-text-card {
  flex: 1;
  overflow: hidden;
}
.img-text-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.img-h-300 .img-text-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.img-text-card .card-body {
  padding: 25px;
  background: #fff;
}
.card-bar {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 10px;
}
.img-text-card .card-body h2,
.text-img-card .card-body-left h2,
.icon-text-card h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #222;
  margin-bottom: 10px;
}
.img-text-card .card-body p,
.text-img-card .card-body-left p,
.icon-text-card p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #666;
}

/* Text + Image Card */
.text-img-card {
  flex: 1;
  display: flex;
  overflow: hidden;
}
.text-img-card .card-body-left {
  flex: 1;
  padding: 25px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.text-img-card img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

/* Horizontal Card Row Layout */
.card-row--horizontal {
  flex-direction: column;
  gap: 30px;
}
.img-text-card--horizontal {
  display: flex;
  flex-direction: row;
}
.img-text-card--horizontal img {
  width: 50%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}
.img-text-card--horizontal .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F8F8F8;
}
.text-img-card--horizontal {
  flex-direction: row;
}
.text-img-card--horizontal .card-body-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F8F8F8;
}
.text-img-card--horizontal img {
  width: 50%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}

/* Icon + Text Card */
.icon-text-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
}
.icon-text-card img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Image Title Card */
.img-title-card {
  position: relative;
  overflow: hidden;
}
.img-title-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.img-title-card .title-overlay {
  position: absolute;
  bottom: 40px;
  left: 24px;
  z-index: 1;
}
.img-title-card .title-overlay h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: var(--font-noto);
}
.img-title-card > p {
  padding: 16px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #666;
  background: #fff;
}

/* Image Title Card - Background Mode */
.img-title-card--bg {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.img-title-card--bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.img-title-card--bg .title-overlay {
  position: relative;
  bottom: auto;
  left: auto;
  z-index: 1;
}
.img-title-card--bg > p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}


/* Civilian Grid */
.civilian-grid {
  display: flex;
  gap: 30px;
}
.civilian-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.col-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.col-header img {
  width: 20px;
  height: 20px;
}
.col-header h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #222;
}
.col-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Civilian List - 普通设备纵向布局 */
.civilian-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.civilian-group {
  width: 100%;
  max-width: 1200px;
}
.civilian-group-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.civilian-group-header.margin-none{
  margin: 0;
}
.civilian-group-header.margin-top20{
  margin-top: 20px;
  margin-bottom: 0;
}
.civilian-group-header img {
  width: 24px;
  height: 24px;
}
.civilian-group-header h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #222;
  font-family: var(--font-noto);
}
.civilian-group-body {
  display: flex;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
/* Slide Panel - 左右切换面板 */
.slide-panel {
  display: none;
  gap: 30px;
  width: 100%;
  flex-shrink: 0;
}
.slide-panel--active {
  display: flex;
  animation: slideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.civilian-card {
  flex: 1;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.civilian-card--img {
  position: relative;
  overflow: hidden;
}
.civilian-card--img img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.civilian-card--img .civilian-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}
.civilian-card--img .civilian-card-content .card-bar {
  background: #fff;
}
.civilian-card--img .civilian-card-content h3 {
  color: #fff;
}
.civilian-card--img .civilian-card-content p {
  color: rgba(255, 255, 255, 0.85);
}
.painting-card-content{
  width: 260px;
  background: #F8F8F8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #222;
  cursor: pointer;
  transition: all 0.3s;
}
.painting-card-content:hover {
  background: #F9FBFF;
}
.painting-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.painting-card-content p {
  color: #4A5565;
  font-size: 14px;
}
.painting-card-content img {
  width: 34px;
}
.civilian-card--icon {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
}
.civilian-card--icon .card-bar {
  flex-shrink: 0;
}
.civilian-card--icon img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.civilian-card--icon .civilian-card-content {
  flex: 1;
}
.protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.protection-grid--cols3 {
  grid-template-columns: repeat(3, 1fr);
}
.protection-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.protection-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.protection-card-content {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.protection-card-content .card-bar {
  width: 30px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 8px;
}
.protection-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #222;
  margin-bottom: 6px;
}
.protection-card-content p {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #666;
}
.civilian-card-content h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #222;
  margin-bottom: 10px;
}
.civilian-card-content p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #666;
}

/* ================================
   About Page Specific
   ================================ */
.about-intro {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.about-intro-text {
  flex: 1;
}
.about-intro-text h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #222;
  margin-bottom: 20px;
}
.about-intro-text p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 10px;
}
.about-intro-img {
  flex: 1;
  display: flex;
  gap: 20px;
}
.about-intro-img > div {
  position: relative;
  overflow: hidden;
}
.about-intro-img > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro-img  div.content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px;
}
.about-intro-img div.content h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.about-intro-img div.content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
  display: flex;
  gap: 10px;
}
.about-intro-img div.content p img{
  width: 20px;
}
/* 左侧大图占满高度 */
.about-intro-img > div:first-child {
  flex: 1;
}
/* 右侧上下两块 */
.about-intro-img > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-intro-img > div:last-child > div {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.about-intro-img > div:last-child > div > img {
  width: 100%;
  height: 100%;
}
.about-intro-img > div:last-child > div > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
}
.about-intro-img > div:last-child > div > div h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.about-intro-img > div:last-child > div > div p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

/* Data Display */
.data-display {
  width: 100%;
  padding: 40px 20px;
  background: #f9fbff;
  display: flex;
  gap: 40px;
  justify-content: center;
}
.data-display-item {
  text-align: center;
}
.data-display-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-din);
}
.data-display-item h3 span {
  font-size: 14px;
  color: #666;
}
.data-display-item p {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
}

/* Awards Grid */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.award-card {
  width: calc(50% - 15px);
  padding: 30px;
  background: #F8F8F8;
  display: flex;
  gap: 20px;
}
.award-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}
.award-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.award-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* Organization Chart */
.org-chart {
  width: 100%;
  padding: 40px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.org-chart h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
.org-chart img {
  width: 100%;
  max-width: 1200px;
}

/* ================================
   News Page Specific
   ================================ */
.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}
.news-card {
  width: calc(33.33% - 20px);
  background: #fff;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card-body {
  padding: 20px;
  background: #F8F8F8;
  flex: 1;
  transition: all 0.3s;
}
.news-card:hover .news-card-body{
  background: #F9FBFF;
}
.news-card:hover .news-card-body h3{
  color: var(--color-primary);
}
.news-card-date {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.news-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.news-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.news-card-meta {
  font-size: 12px;
  color: #aaa;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ================================
   Recruitment Page Specific
   ================================ */
.lc-text-card {
  display: flex;
  align-items: stretch;
  padding-top: 20px;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 25px;
  position: relative;
}
.process-step + .process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #ddd;
}
.process-step h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ECECEC;
  margin-bottom: 10px;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.process-step p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  letter-spacing: 0.05em;
}
.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.job-card {
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
.job-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.job-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.job-info p {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
}
.job-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #999;
}
.job-apply {
  padding: 8px 20px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s;
}
.job-apply:hover {
  background: #1e3a7a;
}

/* Position Toolbar */
.position-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.position-tabs {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}
.position-tab {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 12px;
  color: #555;
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.position-tab:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(46, 84, 161, 0.04);
}
.position-tab.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 600;
}

/* View Toggle - unified style with position-tab */
.view-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.view-toggle-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(46, 84, 161, 0.04);
}
.view-toggle-btn.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Position List - Card View */
.position-list.card-view .position-header {
  display: none;
}
.position-list.card-view .position-row {
  border: none;
  background: none;
}
.position-list.card-view .position-row-main {
  display: none;
}
.position-list.card-view .position-row-detail {
  max-height: none;
  overflow-y: auto;
}
.position-list.card-view .position-row-detail-inner {
  padding: 24px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.position-list.card-view .position-row-detail-inner:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  /* transform: translateY(-2px); */
}
.position-list.card-view {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 20px;
}
.position-list.card-view .position-row.hidden {
  display: none;
}
/* Card view: add a card header with name, salary, tags */
.position-list.card-view .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef1f5;
}
.position-list.card-view .card-header .card-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.position-list.card-view .card-header .card-salary {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
}
.position-list.card-view .card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.position-list.card-view .card-tags .card-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  color: #666;
  background: #f4f6f9;
  border-radius: 4px;
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(118, 118, 118, 0.10);
}
.benefit-card-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #2D3954;
}
.benefit-card-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

/* Position More - Boss Link */
.position-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.btn-boss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  font-size: 12px;
  color: #fff;
  background: #00BEBD;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.btn-boss:hover {
  background: #019e9e;
  box-shadow: 0 4px 12px rgba(46, 84, 161, 0.3);
}

/* Position List */
.position-list {
  width: 100%;
}
.position-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 0.8fr 0.8fr 1fr;
  padding: 14px 25px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.05em;
  border-radius: 4px 4px 0 0;
}
.position-row {
  border: 1px solid #eee;
  border-top: none;
  transition: all 0.3s;
}
.position-row:last-child {
  border-radius: 0 0 4px 4px;
}
.position-row-main {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 0.8fr 0.8fr 1fr;
  padding: 18px 25px;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.position-row-main:hover {
  background: #f9fbff;
}
.position-row-main > span {
  font-size: 14px;
  color: #444;
  letter-spacing: 0.03em;
}
.position-row-main .col-name {
  font-weight: 600;
  color: #222;
  font-size: 15px;
}
.position-row-main .col-salary {
  color: var(--color-primary);
  font-weight: 600;
}

/* Expand Button - Arrow Only */
.btn-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 0;
  color: #999;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-expand:hover {
  color: var(--color-primary);
  background: rgba(46, 84, 161, 0.06);
}
.btn-expand::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-top: -3px;
}
.position-row.expanded .btn-expand::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.position-row.expanded .btn-expand {
  color: var(--color-primary);
}

/* Detail Panel */
.position-row-detail {
  max-height: 0;
  overflow-y: auto;
  transition: max-height 0.4s ease;
}
.position-row.expanded .position-row-detail {
  max-height: 600px;
}
.position-row-detail-inner {
  padding: 25px 30px;
  background: #fff;
}
.detail-section {
  margin-bottom: 18px;
}
.detail-section:last-child {
  margin-bottom: 0;
}
.detail-section h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 12px;
}
.detail-section ul {
  padding-left: 12px;
}
.detail-section li {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.03em;
  position: relative;
  padding-left: 14px;
}
.detail-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bbb;
}

/* Position row hidden by tab filter */
.position-row.hidden {
  display: none;
}

/* ================================
   Research Page Specific
   ================================ */
.research-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.research-item {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.research-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}
.research-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.research-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Patent Grid */
.patent-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.patent-card {
  width: calc(25% - 23px);
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.patent-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 10px;
}
.patent-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}
.equipment-section{
  padding: 40px 0;
}
.equipment-section.bg{
  background: #F8F8F8;
}
.equipment-section.rectangle-bg{
  background-color: #051436;
  background-image: url(../images/Rectangle-bg.png);
}
.equipment-section.rectangle-bg .section-header__title,
.equipment-section.rectangle-bg .section-header__desc{
  color: #fff;
}
.equipment-section.rectangle-bg .card-body{
  background: rgba(46, 84, 161, 0.25);
  color: #fff
}
.equipment-section.rectangle-bg .card-body p,
.equipment-section.rectangle-bg .civilian-group-header{
  color: #fff
}
.equipment-section.rectangle-bg .civilian-group-header{
  margin-top: 20px;
}
.equipment-section-content{
  max-width: 1200px;
  margin: 0 auto;
}
.equipment-section-content .card-body{
  background: #F8F8F8;
}
.equipment-section.bg .equipment-section-content .card-body{
  background: #fff;
}
.content-section.white .card-body{
  background: #F8F8F8;
  min-height: 124px;
}
.lc-img{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.jg-img{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 30px 0;
}
.jg-img img{
  width: 100%;
  object-fit: cover;
}

/* Call Content */
.call-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
}
.call-content > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.call-content > div:first-child h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 24px;
}
.call-content > div:first-child p {
  font-size: 14px;
  color: #999;
  margin-bottom: 4px;
}
.call-content > div:first-child > div {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
}
.call-content > div:last-child {
  flex: 1;
  display: flex;
  align-items: stretch;
  max-width: 40%;
}
.call-content > div:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-breadcrumbs{
  color: #999;
  font-size: 14px;
}
.news-content{
  text-align: center;
}
.news-content h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 10px;
}
.news-content .time{
  color: #999;
  line-height: 1.75;
  font-size: 14px;
}
.news-content .content{
  line-height: 1.75;
  padding: 20px 0;
  text-align: left;
  text-indent: 2em;
}
.news-detail-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
}
.news-back-btn {
  display: inline-block;
  margin: 30px 0 10px;
  padding: 10px 28px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: opacity 0.3s;
}
.news-back-btn:hover {
  opacity: 0.8;
}
.news-meta-line {
  font-size: 13px;
  color: #999;
  margin: 4px 0 16px;
  line-height: 1.8;
}
.news-meta-line span {
  margin: 0 8px;
  color: #bbb;
}

/* Swiper样式 */
.swiper-container {
  width: 100%;
  height: 600px;
  padding: 20px 0;
  background: #051436;
  border-radius: 12px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #051436;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide-active img {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .card-row--stat .img-text-card{ transform: scale(0.6); transform-origin: center; }
  .page-banner { min-height: 220px; }
  .page-banner-header { padding: 40px 20px; }
}
@media (max-width: 992px) {
  .card-row { flex-wrap: wrap; }
  .card-row--grid3 { grid-template-columns: repeat(3, 1fr); }
  .card-row--grid3 .img-text-card { grid-column: span 1; }
  .card-row--grid3 .img-text-card:nth-last-child(2):nth-child(3n+1),
  .card-row--grid3 .img-text-card:nth-last-child(2):nth-child(3n+1) + .img-text-card { grid-column: span 1; }
  .protection-grid { grid-template-columns: repeat(2, 1fr); }
  .swiper-container { height: 400px; }
  .call-content { flex-direction: column; }
  .call-content > div:last-child { max-width: 100%; }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .page-banner { min-height: 200px; }
  .page-banner-header { padding: 30px 20px; }
}
@media (max-width: 768px) {
  .swiper-container { height: 300px; }
  .swiper-button-next, .swiper-button-prev { display: none; }
  .card-row--stat .img-text-card{ transform: scale(1); }
  .card-row--stat { grid-template-columns: repeat(1, 1fr); }
  .card-row--grid3 { grid-template-columns: repeat(1, 1fr); }
  .card-row--2col { grid-template-columns: repeat(1, 1fr); }
  .card-row--3col { grid-template-columns: repeat(1, 1fr); }
  .protection-grid { grid-template-columns: repeat(1, 1fr); }
  .benefit-cards { grid-template-columns: repeat(1, 1fr); }
  .jg-img { grid-template-columns: repeat(1, 1fr); }
  .news-card { width: 100%; }
  .award-card { width: 100%; }
  .page-banner { min-height: 150px; }
  .page-banner-header { padding: 20px; }
  .page-banner-header .section-header__title span { font-size: 20px; }
  .page-banner-header .section-header__desc { font-size: 13px; }
  .banner-slide .banner-content { padding: 60px 20px 40px; }
  .banner-slide .banner-content h1 { font-size: 24px; }
  .process-step { flex: none; width: 100%; }
  .process-step + .process-step::before { display: none; }
  .position-header { display: none; }
  .position-row-main { grid-template-columns: 1fr 1fr; gap: 6px; padding: 14px 16px; }
  .position-row-main .col-name { grid-column: 1 / -1; font-size: 14px; }
  .position-row-main .col-salary { grid-column: 1 / -1; }
  .position-row-main .col-action { position: absolute; right: 12px; top: 12px; }
  .position-row { position: relative; }
  .position-row-main > span { font-size: 12px; }
  .position-row-main .col-exp::before { content: "经验："; color: #999; font-weight: 400; }
  .position-row-main .col-edu::before { content: "学历："; color: #999; font-weight: 400; }
  .position-row-main .col-region::before { content: "地区："; color: #999; font-weight: 400; }
  .position-row-main .col-count::before { content: "人数："; color: #999; font-weight: 400; }
  .news-detail-img { max-width: 100%; }
  .news-content h2 { font-size: 18px; }
  .img-text-card--horizontal,
  .text-img-card--horizontal { flex-direction: column; }
  .img-text-card--horizontal img,
  .text-img-card--horizontal img { width: 100%; min-height: 200px; }
  .text-img-card--horizontal .card-body-left { order: -1; }
}
@media (max-width: 480px) {
  .page-banner-header .section-header__title span { font-size: 16px; }
  .page-banner-header .section-header__desc { font-size: 12px; }
  .banner-slide .banner-content h1 { font-size: 20px; }
  .banner-slide .banner-content p { font-size: 13px; }
  .news-card-body { padding: 14px; }
  .news-card-body h3 { font-size: 14px; }
  .news-card-body p { font-size: 12px; }
}
