/* ... 现有代码 ... */

/* 合作伙伴板块样式 */
.overseas-partners {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.overseas-partners .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.overseas-partners .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #333;
}

.overseas-partners .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5777ba;
  bottom: 0;
  left: calc(50% - 25px);
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 380px;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  height: 380px;  /* 从200px增加到240px */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f8f9fa;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;  /* 从160px增加到200px */
  object-fit: contain;
}

.partner-info {
  padding: 25px;
}

.partner-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.app-name {
  font-size: 16px;
  color: #5777ba;
  margin-bottom: 10px;
  font-weight: 600;
}

.country {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.partner-links {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-visit {
  display: inline-block;
  background: #5777ba;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-visit:hover {
  background: #4a67a2;
  color: #fff;
}

.btn-google {
  background: #34a853;
}

.btn-google:hover {
  background: #2d9249;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .partners-container {
    flex-direction: column;
    align-items: center;
  }
  
  .partner-card {
    width: 100%;
    max-width: 340px;
  }
}

/* 合作方案样式 */
.cooperation-solutions {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e9ecef;
}

.cooperation-solutions h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.solution-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.solution-icon {
  font-size: 40px;
  color: #5777ba;
  margin-bottom: 20px;
}

.solution-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.solution-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .cooperation-solutions h3 {
    font-size: 24px;
  }
  
  .solution-card {
    margin-bottom: 20px;
  }
}