.judge_page {
  background: #FFFFFF;
}
.judge_title {
  text-align: center;
}
.judge_title h2 {
  position: relative;
  font-family: SourceHanSansCN-Regular;
  font-weight: 400;
  font-size: 0.5rem;
  color: #000;
  line-height: 1.35;
}
.judge_title h2::after {
  content: "";
  display: block;
  width: 0.85rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  background: #C9A03D;
}

.judge_section_guest{
    padding: 0.8rem 0 0.5rem;
}


.judge_section {
  overflow: hidden;
}
.judge_section .main {
  max-width: 14rem;
}
.judge_section_primary {
  padding: 0.55rem 0 0.63rem;
}
.judge_section_history {
  padding: 0.8rem 0 0.7rem;
}
.judge_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.52rem;
  row-gap: 0.9rem;
}
.judge_grid_primary {
  margin-top: 0.54rem;
}
.judge_grid_history {
  margin-top: 0.54rem;
}
.judge_grid_guest {
  margin-top: 0.54rem;
  grid-template-columns: 1fr;
  max-width: 4.32rem;
  margin-left: auto;
  margin-right: auto;
}
.judge_grid_more {
  margin-top: 0.7rem;
}
.judge_card {
  width: 100%;
  cursor: pointer;
}
.judge_card:hover .judge_name {
  color: #C9A03D;
  font-weight: bold;
}
.judge_pic {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  background: url(../img/judge_bg.png) no-repeat center center;
  background-size: cover;
  border-radius: 0.1rem;
  overflow: hidden;
}
.judge_pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.judge_pic:hover img {
  transform: scale(1.1);
}
.judge_meta {
  min-height: 0.46rem;
  margin-top: 0.19rem;
  padding-left: 0.3rem;
  font-family: SourceHanSansCN-Regular;
  color: #2B2B2B;
  position: relative;
}
.judge_meta::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: calc(100% - 0.1rem);
  background: #C9A03D;
}
.judge_name {
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 1.7;
}
.judge_desc {
  margin-top: 0.03rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #2B2B2B;
  line-height: 2.1;
}
.judge_more_wrap {
  display: none;
}
.judge_more_wrap.is-open {
  display: block;
}
.judge_more_bar {
  position: relative;
  width: fit-content;
  margin: 0.73rem auto 0;
}
.judge_more_btn {
  padding: 0.16rem 0.63rem;
  border: none;
  border-radius: 0.29rem;
  background: #1A2A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.1rem;
  font-family: SourceHanSansCN-Regular;
  font-weight: 400;
  font-size: 0.16rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--s_tran);
}
.judge_more_btn img {
  width: 0.16rem;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--s_tran);
}
.judge_more_btn:hover {
  background: #C9A03D;
}
.judge_more_btn.is-open img {
  transform: rotate(-180deg);
}
@media (max-width: 1042px) {

  .judge_title h2{
    font-size: 36px;
  }
	.judge_title h2::after{
		width: 80px;
		height: 3px;
		margin: 10px auto 0;
	}



.judge_grid_guest{
    max-width: calc(33.33% - 20px);
}
  .judge_grid {
    column-gap: 30px;
    row-gap: 0.56rem;
  }
  .judge_name{
      font-size: 24px;
  }
  .judge_desc{
      font-size: 16px;
      line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .judge_section_primary{
    padding: 50px 0;
  }
  .judge_title h2 {
    font-size: 24px;
  }
  .judge_grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.24rem;
  }
  .judge_grid_guest{
        max-width: calc(50% - 0.12rem);
        grid-template-columns: 1fr;
  }
  .judge_more_tip {
    display: none;
  }
  .judge_name{
    font-size: 18px;
  }
  .judge_desc{
    margin-top: 5px;
    font-size: 14px;
  }
  .judge_more_btn{
    font-size: 14px;
  }
}

