/* 公共部分 */
.section-ai {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
  margin-top: 30px;
  margin-bottom: 40px;
}

.section-ai:hover {
  transform: translateY(-5px);
}

.section-ai .section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.section-ai .section-title i {
  margin-right: 12px;
  background: var(--light-bg);
  padding: 10px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 轮播图 开始 */
/* #region */
.banner-ai {
  background: linear-gradient(135deg, var(--primary-color), #3a0c49);
  color: white;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-ai .logo-img {
  max-width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.banner-ai h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-ai .subtitle {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 25px;
  font-weight: 300;
}
/* #endregion */
/* 轮播图 开始 */

/* 培养目标 开始 */
/* #region */
.educational-objectives .goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.educational-objectives .goal-card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.educational-objectives .goal-card:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: scale(1.03);
}

.educational-objectives .goal-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.educational-objectives .goal-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.educational-objectives .goal-card:hover i {
  color: white;
}
/* #endregion */
/* 培养目标 结束 */

/* 企业目标 开始 */
/* #region */
.corporate-objectives {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 30px rgba(88, 18, 108, 0.3);
  padding: 40px 0;
}

.corporate-objectives h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.corporate-objectives p {
  font-size: 1.2rem;
}
/* #endregion */
/* 企业目标 结束 */

/* 学习内容 开始 */
/* #region */
.learn-content .tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.learn-content .tech-item {
  background: var(--light-bg);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease;
}

.learn-content .tech-item i {
  margin-right: 5px;
}

.learn-content .tech-item:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: scale(1.03);
}
/* #endregion */
/* 学习内容 结束 */

/* 夯实培养过程 开始 */
/* #region */
.cultivation-process .process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.cultivation-process .process-step {
  text-align: center;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.cultivation-process .process-step:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff !important;
  transform: scale(1.03);
}

.cultivation-process .process-step:hover .title {
  color: #fff !important;
}

.cultivation-process .process-step:hover::before {
  width: 0;
}

.cultivation-process .process-step .title {
  color: var(--primary-color);
  margin: 15px 0;
  font-weight: 900;
}

.cultivation-process .process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 5px 5px 0 0;
}

/* #endregion */
/* 夯实培养过程 结束 */

/* 培养结果 结束 */
/* #region */
.cultivation-results .outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
}

.cultivation-results .outcome-card {
  flex: 1;
  min-width: 250px;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.cultivation-results .outcome-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}
/* #endregion */
/* 培养结果 结束 */

/* 学制与职业发展 开始 */
/* #region */
.educational-development .programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.educational-development .program {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.educational-development .program::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.educational-development .program h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
}

.educational-development .program li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.educational-development .program li::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -0.5%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 999999;
}
/* #endregion */
/* 学制与职业发展 结束 */

/* 职业征程 开始 */
/* #region */
.career-journey .cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), #3a0c49);
  color: white;
  border-radius: 12px;
  margin: 40px 0;
}

.career-journey .cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.career-journey .cta-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.career-journey .cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* #endregion */
/* 职业征程 结束 */

/* 底部 开始 */
/* #region */
.footer-ai {
  background: var(--text-dark);
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
}

.footer-ai p {
  margin: 5px 0;
}
/* #endregion */
/* 底部 结束 */
