/* ÃƒÂ©Ã‚Â¡Ã‚ÂµÃƒÂ©Ã‚ÂÃ‚Â¢ÃƒÂ§Ã¢â‚¬Â°Ã‚Â¹ÃƒÂ¥Ã‚Â®Ã…Â¡ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
* {
  font-family: 'Source Han Sans CN';
}
.main-container {
  width: 1200px;
  margin: 0 auto;
}

.content-box {
  background: #fff;
  box-shadow: 0px 4px 28px 0px rgba(0, 73, 173, 0.04);
  border-radius: 8px;
  padding: 20px;
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tabs {
  display: flex;
  align-items: center;
  gap: 40px;
}

.tab {
  font-size: 20px;
  /* font-weight: 700; */
  padding: 0 0 10px 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.tab.active {
  color: #1764ce;
  border-bottom: 3px solid #1764ce;
  font-weight: 700;
}

.tab.inactive {
  font-weight: 400;
  color: #333;
}

.content-search-box {
  display: flex;
  /* width: 380px; */
  height: 40px;
  margin-left: auto;
  border: 1px solid #e7ebf1;
  border-radius: 4px;
}

.content-search-box .search-input {
  flex: 1;
  padding: 6px 16px;
  border: none;
  outline: none;
  color: #333;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  box-sizing: border-box;
  height: 38px;
}

.search-btn {
  width: 80px;
  background: #1764ce;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.search-icon {
  position: relative;
  width: 20px;
  height: 20px;
  background: url("../images/icon_search.png") no-repeat;
}

.person-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.person-card {
  position: relative;
  width: calc((100% - 40px) / 3);
  height: 220px;
  background: #f6f7f9;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.icon-arrow {
  position: absolute;
  top: 46px;
  right: 19px;
  width: 25px;
  height: 7px;
  background: url("../images/icon_arrow.png") no-repeat;
}
.person-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid #ffffff;
}
.person-card:hover {
  color: #fff;
  background: #1764ce;
}
.person-card:hover .person-name,
.person-card:hover .person-desc {
  color: #fff;
}
.person-card:hover .icon-arrow {
  background: url("../images/icon_arrow_hover.png") no-repeat;
}
.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.person-name {
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.person-desc {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  text-align: justify;
  /* 3ÃƒÂ¨Ã‚Â¡Ã…â€™ÃƒÂ§Ã…â€œÃ‚ÂÃƒÂ§Ã¢â‚¬Â¢Ã‚Â¥ */
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  font-family: 'Source Han Sans CN';
}

.person-tags {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.person-tag {
  width: 24px;
  height: 7px;
  border: 1px solid #1764ce;
}

/* ÃƒÂ§Ã‚Â§Ã‚Â»ÃƒÂ¥Ã…Â Ã‚Â¨ÃƒÂ§Ã‚Â«Ã‚Â¯ÃƒÂ¥Ã¢â‚¬Â¦Ã‚Â¼ÃƒÂ¥Ã‚Â®Ã‚Â¹ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
@media screen and (max-width: 768px) {
  .main-container {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .content-box {
    padding: 15px;
  }

  .toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .tabs {
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .tab {
    font-size: 16px;
    white-space: nowrap;
  }

  .search-box {
    width: 100%;
    margin-left: 0;
  }

  .person-list {
    gap: 15px;
    margin-top: 15px;
  }

  .person-card {
    width: 100%;
    height: auto;
    padding: 15px;
  }

  .person-info {
    margin-bottom: 15px;
  }

  .person-avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .person-name {
    font-size: 18px;
  }

  .person-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .icon-arrow {
    top: 30px;
    right: 15px;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pagination-jump {
    margin-top: 10px;
  }

  .content-search-box {
    width: 100%;
  }

  .content-search-box>ins {
    width: 100%;
  }
}
