/* 全局样式 */
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

/* Banner样式 */
.bk_banner {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.bk_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bk_banner .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 28px;
  margin: 0 0 30px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-consult {
  display: inline-block;
  padding: 15px 40px;
  background-color: #4B0082;
  color: white;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  width: auto;
  height: auto;
}

.btn-consult:hover {
  background-color: #6A0DAD;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* 本科转学优势 */
.bkzxys {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}

.bkzxys span {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  right: 0;
}

.bkzxys span:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #4B0082;
  margin: 15px auto 0;
}

.bkzxys img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 本科转学类型样式 */
.transfer-types {
  text-align: center;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.transfer-types h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.transfer-types h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #4B0082;
  margin: 15px auto 0;
}

.transfer-types-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.transfer-type-item1,
.transfer-type-item2 {
  background-color: #f5f0ff;
  border-radius: 15px;
  padding: 40px 30px;
  width: 45%;
  height: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transfer-type-item1:hover,
.transfer-type-item2:hover {
  transform: translateY(-10px);
}

.transfer-type-item1 h3,
.transfer-type-item2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: #4B0082;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0d0ff;
  width: 100%;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 25px;
  font-weight: 600;
}

.transfer-type-item1 ul,
.transfer-type-item2 ul {
  list-style-type: none;
  text-align: left;
  padding: 0;
  width: 100%;
}

.transfer-type-item1 ul li,
.transfer-type-item2 ul li {
  margin: 15px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.transfer-type-item1 ul li:before,
.transfer-type-item2 ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4B0082;
  font-weight: bold;
}

/* 本科转学服务 */
.service-section {
  text-align: center;
  padding: 40px 0 80px;
}

.service-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.service-section h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #4B0082;
  margin: 15px auto 0;
}

.service-image {
  max-width: 90%;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .transfer-types-container {
    flex-direction: column;
    align-items: center;
  }
  
  .transfer-type-item1,
  .transfer-type-item2 {
    width: 80%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .bk_banner {
    height: 400px;
  }
  
  .hero-content h2 {
    font-size: 40px;
  }
  
  .hero-content p {
    font-size: 20px;
  }
  
  .bkzxys span,
  .transfer-types h2,
  .service-section h2 {
    font-size: 28px;
  }
  
  .transfer-type-item1 h3,
  .transfer-type-item2 h3 {
    font-size: 24px;
  }
  
  .subtitle {
    font-size: 18px;
  }
}