/* ============================================
   person.css  人员展示页面样式
   ============================================ */

/* ============================================
   宣传标语横幅
   ============================================ */
.person-banner {
  /*background: linear-gradient(135deg, #f0f5fc 0%, #e3edf7 50%, #d4e2f1 100%);*/
  border: 1px solid #d4e2f1;
  /*border-left: 4px solid #0036A2;*/
  border-radius: 6px;
  padding: 22px 30px;
  margin-bottom: 16px;
  text-align: center;
}

.person-banner-line1 {
  font-size: 40px;
  font-weight: 700;
  color: #0036A2;
  letter-spacing: 5px;
  line-height: 1.6;
  margin: 0;
}

.person-banner-line2 {
  font-size: 28px;
  font-weight: 600;
  color: #3B6FB4;
  letter-spacing: 4px;
  line-height: 1.6;
  margin: 2px 0 0 0;
}

.person-wrap {
  background: #fff;
  border: 1px solid #d4e2f1;
  border-radius: 6px;
  padding: 30px;
  min-height: 780px;
}

/* ============================================
   Leader 领导区域
   ============================================ */
.leader-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: #f9fbfd;
  border: 1px solid #e7eef6;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(40, 80, 160, .1);
}

.leader-photo {
  width: 140px;
  height: 186px;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8eff6 0%, #dce5f0 100%);
  border: 1px solid #d4e2f1;
  margin-bottom: 16px;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.leader-field {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
  line-height: 1.7;
}

.leader-field:last-child {
  margin-bottom: 0;
}

.leader-label {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: #0036A2;
  letter-spacing: 1px;
  margin-right: 6px;
  white-space: nowrap;
}

.leader-value {
  font-size: 14px;
  color: #555;
}

/* ============================================
   Business 业务人员区域
   ============================================ */
.business-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #e7eef6;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(16px, 2vw, 28px) clamp(12px, 2vw, 24px);
}

.business-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 18px;
  background: #f9fbfd;
  border: 1px solid #e7eef6;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}

.business-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(40, 80, 160, .1);
}

.business-photo {
  width: 140px;
  height: 186px;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8eff6 0%, #dce5f0 100%);
  border: 1px solid #d4e2f1;
  margin-bottom: 14px;
}

.business-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-name {
  font-size: 16px;
  font-weight: 700;
  color: #0036A2;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}

.business-position {
  font-size: 13px;
  color: #666;
  text-align: center;
  line-height: 1.4;
  margin-top: 6px;
}

/* ============================================
   媒体查询 - Portrait (竖屏)
   ============================================ */
@media (orientation: portrait) {
    .person-banner {
        padding: 16px 14px;
        border-left-width: 3px;
    }

    .person-banner-line1 {
        font-size: 17px;
        letter-spacing: 3px;
    }

    .person-banner-line2 {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .person-wrap {
        padding: 14px;
        min-height: auto;
    }

    .leader-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .leader-photo {
        flex: 0 0 auto;
        width: 160px;
        height: 200px;
        margin-bottom: 0;
    }

    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 16px;
    }

    .leader-info {
        padding-top: 0;
        align-items: center;
    }

    .leader-label {
        display: none;
    }

    .leader-field {
        justify-content: center;
    }

    .business-section {
        margin-top: 28px;
        padding-top: 24px;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .business-card {
        padding: 14px 10px 12px;
    }

    .business-photo {
        width: 100px;
        height: 133px;
        margin-bottom: 10px;
    }

    .business-name {
        font-size: 14px;
    }

    .business-position {
        font-size: 12px;
        margin-top: 4px;
    }
}
