@charset "utf-8";
/**
 * 人员外包服务页面样式 - 精美版
 * Outsourcing Service Page Styles - Premium Edition
 */

/* ========================================
   人员外包服务页面样式 - 无CSS变量版本
   ======================================== */

/* ========================================
   Banner区域 - 全新设计
   ======================================== */
.outsourcing-banner {
  height: 650px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.outsourcing-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/about_banner.jpg) no-repeat center/cover;
  opacity: 0.12;
}

.outsourcing-banner::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,112,25,0.18) 0%, transparent 70%);
  top: -250px;
  right: -150px;
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.outsourcing-banner .banner-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
}

.outsourcing-banner .banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.outsourcing-banner .banner-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 1px;
}

.outsourcing-banner .btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  color: #fff;
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 12px 40px rgba(255,112,25,0.4);
  text-decoration: none;
  letter-spacing: 1px;
}

.outsourcing-banner .btn-cta:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255,112,25,0.55);
}

/* ========================================
   服务介绍区域 - 卡片重新设计
   ======================================== */
.service-intro {
  background: #f8f9fc;
  padding: 100px 0;
  position: relative;
}

.service-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(26,26,46,0.03) 0%, transparent 100%);
}

.service-intro .service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-intro .service-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 35px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
  flex: 0 0 calc(20% - 24px);
  min-width: 220px;
  max-width: 280px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-intro .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-intro .service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,112,25,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-intro .service-card:hover::before {
  transform: scaleX(1);
}

.service-intro .service-card:hover::after {
  opacity: 1;
}

.service-intro .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-intro .service-card .icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255,112,25,0.12) 0%, rgba(255,112,25,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-intro .service-card .icon .iconfont {
  font-size: 48px;
  color: #ff7019;
  transition: all 0.4s ease;
}

.service-intro .service-card:hover .icon {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255,112,25,0.35);
}

.service-intro .service-card:hover .icon .iconfont {
  color: #fff;
}

.service-intro .service-card h3 {
  font-size: 18px;
  color: #2d3436;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-intro .service-card p {
  font-size: 13px;
  color: #636e72;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ========================================
   合作模式区域 - 精美卡片设计
   ======================================== */
.cooperation-mode {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cooperation-mode::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255,112,25,0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,112,25,0.03) 0%, transparent 50%);
}

.cooperation-mode .mode-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.cooperation-mode .mode-item {
  background: #fff;
  border-radius: 28px;
  padding: 55px 45px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid #e8ecef;
  box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.cooperation-mode .mode-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cooperation-mode .mode-item::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,112,25,0.08) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cooperation-mode .mode-item:hover::before {
  opacity: 1;
}

.cooperation-mode .mode-item:hover::after {
  opacity: 1;
}

.cooperation-mode .mode-item:hover {
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.cooperation-mode .mode-item .icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(255,112,25,0.1) 0%, rgba(255,112,25,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  transition: all 0.4s ease;
  position: relative;
}

.cooperation-mode .mode-item .icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(255,112,25,0.2);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.cooperation-mode .mode-item:hover .icon::after {
  opacity: 1;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cooperation-mode .mode-item .icon .iconfont {
  font-size: 55px;
  color: #ff7019;
  transition: all 0.4s ease;
}

.cooperation-mode .mode-item:hover .icon {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255,112,25,0.35);
}

.cooperation-mode .mode-item:hover .icon .iconfont {
  color: #fff;
}

.cooperation-mode .mode-item h3 {
  font-size: 22px;
  color: #2d3436;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.cooperation-mode .mode-item > p {
  font-size: 14px;
  color: #636e72;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.cooperation-mode .mode-item .features {
  text-align: left;
  padding: 25px;
  background: #f8f9fc;
  border-radius: 18px;
  list-style: none;
}

.cooperation-mode .mode-item .features li {
  font-size: 15px;
  color: #636e72;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.cooperation-mode .mode-item .features li:last-child {
  border-bottom: none;
}

.cooperation-mode .mode-item .features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,112,25,0.25);
}

.cooperation-mode .mode-item:hover .features li {
  color: #2d3436;
}

/* ========================================
   人才展示区域 - 全新卡片设计
   ======================================== */
.talent-pool {
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
  padding: 100px 0;
  position: relative;
}

.talent-pool::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,112,25,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.talent-pool .filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.talent-pool .filter-btn {
  padding: 14px 32px;
  background: #fff;
  border: 2px solid #e8ecef;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #636e72;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.talent-pool .filter-btn:hover {
  border-color: #ff7019;
  color: #ff7019;
  transform: translateY(-2px);
}

.talent-pool .filter-btn.active {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,112,25,0.35);
  transform: translateY(-2px);
}

.talent-pool .talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.talent-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.talent-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,112,25,0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: all 0.4s ease;
}

.talent-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.talent-card:hover::before {
  transform: translate(30%, -30%) scale(1.2);
}

.talent-card:hover::after {
  transform: scaleX(1);
}

.talent-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.talent-card .talent-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.talent-card .talent-avatar {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 15px;
}

.talent-card .avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255,112,25,0.3);
  transition: all 0.4s ease;
}

.talent-card:hover .avatar-placeholder {
  transform: scale(1.05) rotate(3deg);
}

.talent-card .avatar-placeholder .iconfont {
  font-size: 42px;
  color: #fff;
}

.talent-card .experience-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.talent-card .talent-info {
  flex: 1;
}

.talent-card .talent-title {
  font-size: 18px;
  color: #2d3436;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.talent-card .skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: center;
}

.talent-card .skill-tags .tag {
  background: linear-gradient(135deg, rgba(255,112,25,0.12) 0%, rgba(255,112,25,0.06) 100%);
  color: #ff7019;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.talent-card:hover .skill-tags .tag {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,112,25,0.25);
}

.talent-card .talent-desc {
  font-size: 14px;
  color: #636e72;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 25px;
  text-align: center;
}

.talent-card .talent-action {
  margin-top: auto;
  text-align: center;
}

.talent-card .btn-consult {
  display: inline-block;
  background: transparent;
  border: 2px solid #ff7019;
  color: #ff7019;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.talent-card .btn-consult:hover {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,112,25,0.35);
  transform: translateY(-2px);
}

/* ========================================
   服务流程区域 - 时间轴重新设计
   ======================================== */
.outsourcing-process {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.outsourcing-process::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255,112,25,0.04) 0%, transparent 70%);
  bottom: -450px;
  left: -250px;
  border-radius: 50%;
}

.outsourcing-process::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,112,25,0.03) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  border-radius: 50%;
}

.outsourcing-process .process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.outsourcing-process .process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 5px;
  background: linear-gradient(90deg, #e8ecef 0%, #ff7019 30%, #ff7019 70%, #e8ecef 100%);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(255,112,25,0.15);
}

.outsourcing-process .process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 18px;
  max-width: 240px;
}

.outsourcing-process .process-step .step-icon {
  width: 105px;
  height: 105px;
  background: #fff;
  border: 5px solid #e8ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.outsourcing-process .process-step .step-icon::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(255,112,25,0.15);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.outsourcing-process .process-step:hover .step-icon::after {
  opacity: 1;
  animation: spin 8s linear infinite;
}

.outsourcing-process .process-step .step-icon .iconfont {
  font-size: 44px;
  color: #ff7019;
  transition: all 0.3s ease;
}

.outsourcing-process .process-step:hover .step-icon {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  border-color: #ff7019;
  transform: scale(1.18);
  box-shadow: 0 18px 50px rgba(255,112,25,0.4);
}

.outsourcing-process .process-step:hover .step-icon .iconfont {
  color: #fff;
}

.outsourcing-process .process-step h4 {
  font-size: 18px;
  color: #2d3436;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.outsourcing-process .process-step p {
  font-size: 13px;
  color: #636e72;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
}

.outsourcing-process .process-step .step-time {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,112,25,0.12) 0%, rgba(255,112,25,0.06) 100%);
  color: #ff7019;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.outsourcing-process .process-step:hover .step-time {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,112,25,0.3);
}

/* ========================================
   外包案例区域 - 滚动展示设计
   ======================================== */
.outsourcing-cases {
  background: #f8f9fc;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.outsourcing-cases .os-section-title {
  margin-bottom: 40px;
}

.outsourcing-cases .os-section-title dd {
  color: #2d3436;
}

.outsourcing-cases .os-section-title dt {
  color: #636e72;
}

/* 滚动容器 */
.outsourcing-cases .scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.outsourcing-cases .scroll-container::before,
.outsourcing-cases .scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.outsourcing-cases .scroll-container::before {
  left: 0;
  background: linear-gradient(90deg, #f8f9fc 0%, transparent 100%);
}

.outsourcing-cases .scroll-container::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #f8f9fc 100%);
}

/* 滚动轨道 - 关键样式 */
.outsourcing-cases .scroll-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
  gap: 25px;
  -webkit-animation: scroll-left 35s linear infinite;
  animation: scroll-left 35s linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 0;
}

.outsourcing-cases .scroll-track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* 案例卡片 - 关键样式 */
.outsourcing-cases .case-card {
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 350px !important;
  flex: 0 0 350px !important;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
  width: 350px !important;
  min-width: 350px !important;
  max-width: 350px !important;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.04);
  display: inline-block;
  vertical-align: top;
}

.outsourcing-cases .case-card:hover {
  -webkit-transform: translateY(-10px) scale(1.02);
  transform: translateY(-10px) scale(1.02);
  -webkit-box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.outsourcing-cases .case-card .case-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.outsourcing-cases .case-card .case-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.outsourcing-cases .case-card:hover .case-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.outsourcing-cases .case-card .case-img .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), to(rgba(0,0,0,0.7)));
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.outsourcing-cases .case-card:hover .case-img .case-overlay {
  opacity: 1;
}

.outsourcing-cases .case-card .case-info {
  padding: 25px 20px;
  background: #fff;
}

.outsourcing-cases .case-card .case-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.4;
}

.outsourcing-cases .case-card .case-meta {
  font-size: 13px;
  color: #636e72;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.5;
}

.outsourcing-cases .case-card .case-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.outsourcing-cases .case-card .case-tag {
  background: linear-gradient(135deg, rgba(255,112,25,0.12) 0%, rgba(255,112,25,0.06) 100%);
  color: #ff7019;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.outsourcing-cases .case-card:hover .case-tag {
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(255,112,25,0.25);
  box-shadow: 0 4px 12px rgba(255,112,25,0.25);
}

/* 统计数据展示 */
.outsourcing-cases .stats-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.outsourcing-cases .stat-item {
  text-align: center;
  position: relative;
}

.outsourcing-cases .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, #e8ecef), to(transparent));
  background: linear-gradient(180deg, transparent 0%, #e8ecef 50%, transparent 100%);
}

.outsourcing-cases .stat-number {
  font-size: 42px;
  font-weight: 800;
  background: -webkit-gradient(linear, left top, right bottom, from(#ff7019), to(#ff9a56));
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.outsourcing-cases .stat-number span {
  font-size: 22px;
  font-weight: 700;
}

.outsourcing-cases .stat-label {
  font-size: 15px;
  color: #636e72;
  font-weight: 500;
}

/* 响应式 - 案例区域 */
@media (max-width: 992px) {
  .outsourcing-cases .stats-bar {
    gap: 50px;
  }
  
  .outsourcing-cases .stat-item:not(:last-child)::after {
    right: -25px;
  }
}

@media (max-width: 768px) {
  .outsourcing-cases .scroll-track {
    gap: 15px;
  }
  
  .outsourcing-cases .case-card {
    -ms-flex: 0 0 300px !important;
    flex: 0 0 300px !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
  }
  
  .outsourcing-cases .case-card .case-img {
    height: 170px;
  }
  
  .outsourcing-cases .stats-bar {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px 50px;
    padding: 30px 20px;
  }
  
  .outsourcing-cases .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .outsourcing-cases .stat-number {
    font-size: 32px;
  }
  
  .outsourcing-cases .stat-number span {
    font-size: 18px;
  }
  
  .outsourcing-cases .scroll-container::before,
  .outsourcing-cases .scroll-container::after {
    width: 50px;
  }
}

@media (max-width: 576px) {
  .outsourcing-cases .case-card {
    -ms-flex: 0 0 280px !important;
    flex: 0 0 280px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
  }
  
  .outsourcing-cases .case-card .case-img {
    height: 150px;
  }
  
  .outsourcing-cases .case-card .case-info {
    padding: 20px 15px;
  }
  
  .outsourcing-cases .case-card .case-title {
    font-size: 16px;
  }
  
  .outsourcing-cases .stats-bar {
    gap: 25px 40px;
  }
  
  .outsourcing-cases .stat-number {
    font-size: 28px;
  }
}

/* ========================================
   咨询表单区域 - 精美设计
   ======================================== */
.contact-form {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,112,25,0.12) 0%, transparent 70%);
  top: -250px;
  left: -250px;
  border-radius: 50%;
  animation: pulse-glow 5s ease-in-out infinite;
}

.contact-form::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,112,25,0.1) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite reverse;
}

.contact-form .os-section-title::after {
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
}

.contact-form .os-section-title dd {
  color: #fff;
}

.contact-form .os-section-title dt {
  color: rgba(255,255,255,0.7);
}

.contact-form .form-container {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 70px 60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.contact-form .form-container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  border-radius: 33px;
  z-index: -1;
  opacity: 0.5;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form .form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 12px;
}

.contact-form .form-group label .required {
  color: #ff4d4f;
  margin-left: 4px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e8ecef;
  border-radius: 14px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fc;
  box-sizing: border-box;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: #ff7019;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,112,25,0.12);
  outline: none;
}

.contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 12px 35px rgba(255,112,25,0.35);
  letter-spacing: 1px;
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255,112,25,0.45);
}

/* ========================================
   公共容器样式
   ======================================== */
.os-section-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   标题样式 - outsourcing专用
   ======================================== */
.os-section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.os-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ff7019 0%, #ff9a56 100%);
  border-radius: 2px;
}

.os-section-title dd {
  font-size: 32px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 12px;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}

.os-section-title dt {
  font-size: 15px;
  color: #636e72;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   响应式适配 - 完整版
   ======================================== */
@media (max-width: 1400px) {
  .service-intro .service-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 1200px) {
  .service-intro .service-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 320px;
  }
  
  .talent-pool .talent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .outsourcing-process .process-timeline::before {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 992px) {
  .outsourcing-banner {
    height: 500px;
  }
  
  .outsourcing-banner .banner-content h1 {
    font-size: 36px;
  }
  
  .os-section-title dd {
    font-size: 28px;
  }
  
  .service-intro .service-card {
    flex: 0 0 calc(50% - 15px);
    max-width: 350px;
  }
  
  .cooperation-mode .mode-list {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 550px;
  }
  
  .outsourcing-process .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .outsourcing-process .process-timeline::before {
    display: none;
  }
  
  .outsourcing-process .process-step {
    max-width: 450px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .outsourcing-banner {
    height: 450px;
  }
  
  .outsourcing-banner .banner-content h1 {
    font-size: 30px;
  }
  
  .outsourcing-banner .banner-content p {
    font-size: 16px;
  }
  
  .outsourcing-banner .btn-cta {
    padding: 14px 35px;
    font-size: 16px;
  }
  
  .service-intro,
  .cooperation-mode,
  .talent-pool,
  .outsourcing-process,
  .outsourcing-cases,
  .contact-form {
    padding: 60px 0;
  }
  
  .os-section-title {
    margin-bottom: 40px;
  }
  
  .os-section-title::after {
    bottom: -12px;
    width: 50px;
  }
  
  .os-section-title dd {
    font-size: 24px;
  }
  
  .os-section-title dt {
    font-size: 14px;
  }
  
  .talent-pool .talent-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .talent-pool .filter-bar {
    gap: 10px;
  }
  
  .talent-pool .filter-btn {
    padding: 10px 22px;
    font-size: 13px;
  }
  
  .contact-form .form-container {
    padding: 40px 25px;
    margin: 0 15px;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .outsourcing-banner {
    height: 380px;
  }
  
  .outsourcing-banner .banner-content h1 {
    font-size: 26px;
  }
  
  .os-section-title dd {
    font-size: 22px;
  }
  
  .service-intro .service-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .service-intro .service-card {
    padding: 40px 30px;
  }
  
  .cooperation-mode .mode-item {
    padding: 40px 30px;
  }
  
  .cooperation-mode .mode-item h3 {
    font-size: 22px;
  }
  
  .talent-card {
    padding: 30px 25px;
  }
  
  .outsourcing-process .process-step .step-icon {
    width: 85px;
    height: 85px;
  }
  
  .outsourcing-process .process-step .step-icon .iconfont {
    font-size: 34px;
  }
}

/* ========================================
   动画效果增强
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.service-intro .service-card:nth-child(odd):hover .icon {
  animation: pulse 0.6s ease;
}

.cooperation-mode .mode-item:hover .icon {
  animation: float 2s ease-in-out infinite;
}

/* ========================================
   滚动条美化
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f9fc;
}

::-webkit-scrollbar-thumb {
  background: #ff7019;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e56010;
}
