.agenda-guest-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 16px 40px;
    box-sizing: border-box;
  }
  .nav{
    /* display: none !important; */
  }
  .agenda-guest-title {
    text-align: center;
    margin: 10px 0 18px;
  }
  .agenda-guest-title h2.agenda-guest-title-text {
    font-size: 78px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
    color: #1055d6;
    display: inline-block;
    position: relative;
  /* 再设置描边 */
  -webkit-text-stroke: 2px white;
  }
  .agenda-guest-title h2.agenda-guest-title-text::after {
    content: '';
    position: absolute;
    left: -0.03em;
    right: -0.03em;
    bottom: -0.04em;
    height: 0.43em;
    background: #1055d6;
    z-index: -1;
  }
  .agenda-guest-title h2.agenda-guest-title-text:empty::after {
    display: none;
  }
  .agenda-guest-dates {
    display: flex;
    justify-content: center;
    gap: 14px;
    /* margin: 16px 0 18px; */
    margin-top: 70px;
    flex-wrap: wrap;
    border-bottom: 1px solid #1055d6;
    padding: 20px 0;
  }
  .agenda-guest-dates .date-btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #8caeec;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    font-size: 18px;
    transition: all .15s ease;
    /* border: 1px solid rgba(255,255,255,.18); */
  }
  .agenda-guest-dates .date-btn.active {
    /* background: #f36b2c; */
    /* border-color: #f36b2c; */
    color: #1055d6;
    position: relative;
  }
  .agenda-guest-dates .date-btn.active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    bottom: 0;
    width: 50%;
    height: 4px;
    background: #1055d6;
    border-radius: 40px;
  }
  .agenda-guest-empty {
    text-align: center;
    color: rgba(255,255,255,.8);
    padding: 40px 0;
  }
  .agenda-block {
    /* margin: 22px 0 34px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.2); */
    
  }
  .agenda-block-header {
    text-align: center;
    margin: 60px 0;
  }
  .agenda-name {
    display: inline-block;
    padding: 10px 33px;
    background: #1055d6;
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
  }
  .guest-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    border-bottom: 1px solid #8caeec;
    padding-bottom: 100px;
  }
  .agenda-block:last-child .guest-list {
    border-bottom: none;
    padding-bottom: 0;
  }
  @media (max-width: 900px) {
    .guest-list { justify-content: center; }
  }
  @media (max-width: 560px) {
    .agenda-guest-title h2.agenda-guest-title-text { font-size: 34px; }
  }
  .guest-card {
    width: 300px;
    text-align: center;
    /* color: #fff; */
    position: relative;
    cursor: pointer;
  }
  .guest-tag {
    font-size: 12px;
    color: #333333;
    
    /* display: inline-block;
    padding: 6px 10px;
    background: #f36b2c;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 10px; */
  }
  .guest-avatar {
    width: 300px;
    height: 300px;
    margin: 0 auto 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    overflow: hidden;
    position: relative;
  }
  .guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .guest-name .cn, .guest-name .en {
    font-weight: 800;
    font-size: 18px;
    margin: 4px 0;
    color: #333333;
  }
  .guest-sub .pos {
    font-size: 12px;
    /* opacity: .9; */
    line-height: 1.4;
    color: #333333;
  }



  @media (max-width: 768px) {
    html {
      font-size: calc(100vw / 1175 * 10);
    }

    .agenda-guest-title h2.agenda-guest-title-text{
      font-size: 9rem;
      -webkit-text-stroke: 0.1rem white;
    }
    .agenda-guest-dates{
      margin-top: 18rem;
      padding: 0;
      padding-bottom: 1.14rem;
      gap: 1rem 12rem;
      font-size: 4.8rem;
    }
    .agenda-guest-dates .date-btn{
      padding: 10px 0;
      font-size: 4.8rem;
    }
    .agenda-block-header{
      margin-top: 6rem;
    }

    .agenda-name{
      padding:4.9rem 10rem;
      font-size: 4.5rem;
    }
    .guest-card{
      width: 100%;
    }
    .guest-avatar{
      width: 84.6rem;
      height: 84.6rem;
    }
    .guest-name .cn, .guest-name .en{
      font-size: 4.8rem;
      line-height: 9rem;
      color: #333333;
    }
    .guest-sub .pos,.guest-tag{
      font-size: 3.3rem;
      line-height: 4.8rem;
    }
  }