.right_menu {
  width: 250px;
}

.left_content {
  width: calc(100% - 280px);
}

.juries_title {
  font-size: 30px;
  font-family: Poppins_Bold, Arial, sans-serif;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 38px;
}

.juries_item {
  width: 23%;
  max-width: 310px;
  position: relative;
  cursor: pointer;

}

.j_photo {
  width: 100%;
  display: block;
}

.j_info {
  position: absolute;
  bottom: 30px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}

.j_name {
  font-family: Poppins_Bold, Arial, sans-serif;
  color: var(--blue);
  font-size: 30px;
  text-transform: uppercase;
  line-height: 30px;
}

.j_title {
  background-color: var(--blue);
  line-height: 30px;
  border-radius: 30px;
  width: calc(100% - 20px);
  font-size: 20px;
  margin: 10px auto 0 auto;
  color: #fff;
  padding: 0 20px;
  display: inline;
}

.top {
  display: flex;
  justify-content: center;

  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* 保证 top 的卡片尺寸跟当前列表（other/other2）一致 */
.top .juries_item {
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
}

/* category==8（other2）时：top 跟 other2 一样按 3 列计算 */
.top.top_other2 .juries_item {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);

}

.top_other2 {
  width: 60%;
}

.other {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;

  width: 80%;
  margin: 0 auto;
  gap: 20px;
}

/* 稳定一行4个（考虑 gap），左对齐排列 */
.other .juries_item {
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
}

.other2 {
  /* max-width: 1044px; */
  width: 60%;
  margin: 0 auto;
  /* padding-left: 80px; */
}

/* category==8 特例：一行3个 */
.other2 .juries_item {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
}

.juries_list {
  margin-bottom: 50px;
}

.j_detail {
  width: 70%;
  max-width: 1000px;
  background-color: #fff;
  padding: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 95%;
  transform: translate(-50%, -50%);
}

.j_detail_title {
  font-family: Poppins_Bold, Arial, sans-serif;
  color: var(--blue);
  font-size: 30px;
  text-transform: uppercase;
  line-height: 30px;
}

.j_detail_body {
  min-height: 700px;
  max-height: 700px;
  overflow-y: auto;
}

.j_detail_close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 20px;
}

.j_detail_info {
  margin-top: 30px;
  display: flex;
}

.j_detail_photo {
  width: 250px;
  display: block;
  margin-right: 20px;
}

.juries_detail_info .cat {
  font-family: Poppins_Bold, Arial, sans-serif;

  font-size: 20px;
  text-transform: uppercase;
  line-height: 24px;
}

.juries_detail_info .title {
  background-color: var(--blue);
  color: #fff;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 30px;
  display: inline-block;
  margin: 10px 0;
  height: 30px;
}

.title2 {
  padding: 0 10px;
  margin: 10px 0;
  height: 30px;
  display: inline-block;
}

.j_detail_desc .name {
  font-family: Poppins_Bold, Arial, sans-serif;
  color: var(--blue);
  font-size: 30px;
  text-transform: uppercase;
  line-height: 30px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.j_detail_text {
  margin-top: 40px;

}

@media screen and (max-width: 1219px) {
  .juries_item {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  /* 覆盖桌面端 other 的 4 列 flex-basis 设置，恢复移动端一行一个 */
  .other .juries_item {
    flex: 0 0 100%;
    max-width: 350px;
  }

  .photo_content {
    flex-direction: column;
  }

  .pc_right_menu {
    display: none;
  }

  .right_menu {
    width: 100%;
  }

  .mobile_right_menu {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 40px;

    width: 100%;
    border: 1px solid var(--blue);
    font-family: Poppins_Bold, Arial, sans-serif;
    width: 100%;
  }

  .left_content {
    width: 100%;
  }

  .j_name {
    font-size: 20px;
  }

  .mask {
    position: absolute;
    height: 100%;
  }

  .j_detail {
    top: 100px;
    transform: translate(-50%, 0);
    width: 80%;
  }

  .j_detail_info {
    display: flex;
    flex-direction: column;
  }

  .j_detail_text {}

  .j_detail_desc .cat {
    font-size: 20px;
    line-height: 20px;
  }

  .j_detail_desc .name {
    font-size: 20px;
  }

  .j_detail_photo {
    margin-right: 0;
    width: 400px;
    margin-bottom: 15px;
  }

  .juries_title {
    font-size: 24px;
  }

  .other2 .juries_item {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .top.top_other2 .juries_item {
    width: 100%;
    max-width: 350px;
    flex: 0 0 100%;
  }

  .top .juries_item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 350px;
  }
}

.share_box {
  display: flex;
  margin-top: 10px;
}

.share_box_icon {
  display: block;
  width: 30px;
  margin-right: 10px;
  cursor: pointer;
}

.juries_detail .juries_detail_header {
  margin-right: 30px;
  width: 220px;

}

.juries_detail .speakers_detail_top {
  align-items: flex-start;
}