/* ========================================
   转让信息卡片模块样式
   ======================================== */

.transfer-section {
  background: #f8fafc;
  padding: 80px 0 60px;
}

.transfer-section .section-header {
  text-align: center;
  margin-bottom: 45px;
}

.transfer-section .section-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.transfer-section .section-header h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
}

.transfer-section .section-header p {
  font-size: 15px;
  color: #718096;
  margin-top: 18px;
}

/* 卡片网格 */
.transfer-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.transfer-grid .transfer-col {
  width: 33.333%;
  padding: 0 12px;
  margin-bottom: 24px;
}

/* 单张卡片 */
.transfer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 100%;
}

.transfer-card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* 图片区域 */
.transfer-card .card-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #e2e8f0;
}

.transfer-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.transfer-card:hover .card-img-wrap img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/* 图片上的查看标签 */
.transfer-card .card-img-wrap .img-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26, 86, 219, 0.85);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.transfer-card:hover .card-img-wrap .img-tag {
  opacity: 1;
}

/* 信息区域 */
.transfer-card .card-info {
  padding: 18px 20px 20px;
}

.transfer-card .card-info .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.transfer-card .card-info .card-title a {
  color: #1a202c;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.transfer-card .card-info .card-title a:hover {
  color: #1a56db;
}

/* 元信息行 */
.transfer-card .card-info .card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
  font-size: 13px;
  color: #718096;
}

.transfer-card .card-info .card-meta .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.transfer-card .card-info .card-meta .meta-item i {
  font-size: 13px;
  color: #a0aec0;
}

.transfer-card .card-info .card-meta .meta-item span {
  color: #4a5568;
}

/* 更多按钮 */
.transfer-more-wrap {
  text-align: center;
  margin-top: 16px;
}

.transfer-more-wrap .btn-transfer-more {
  display: inline-block;
  padding: 10px 36px;
  font-size: 15px;
  font-weight: 500;
  color: #1a56db;
  border: 2px solid #1a56db;
  border-radius: 30px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.transfer-more-wrap .btn-transfer-more:hover {
  background: #1a56db;
  color: #fff;
}

/* ========================================
   响应式
   ======================================== */

/* 平板 */
@media (max-width: 991px) {
  .transfer-grid .transfer-col {
    width: 50%;
  }
  
  .transfer-section .section-header h3 {
    font-size: 26px;
  }
}

/* 手机 */
@media (max-width: 767px) {
  .transfer-section {
    padding: 50px 0 30px;
  }
  
  .transfer-grid .transfer-col {
    width: 100%;
  }
  
  .transfer-card .card-img-wrap {
    height: 200px;
  }
  
  .transfer-section .section-header h3 {
    font-size: 22px;
  }
}
