.card {
    position: relative;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    margin-top: 5%;
    margin-bottom: 5%;
}


.card_case {
    position: relative;
    margin-left: 0; 
    flex: 1; 
}

.card_case img {
    width: 130%;
    height: 130%; 
    border-radius: 15px;
    border: 4px solid rgba(251, 111, 146, .9);
    margin: 0 0 0 -45%; 
}

.user_card {
    position: relative;
    width: 120%; 
    height: 320px;
    border-radius: 15px;
    background: rgb(255, 255, 255);
    box-shadow: 10px 10px 2px 1px rgba(255, 77, 109, 0.4);
    transition: all .2s;
    margin: 0 -25% 0 0; 
    flex: 2; 
    display: flex;
    padding: 15px 25px;
}

.question {
    display: flex;
    align-items: center; 
    position: absolute;
    top: 10px; 
    left: 20px;
    font-size: 24px;
}

.question img {
    margin-right: 10px;
}
.Qtext {
    background-color: rgba(253, 246, 247, 0.978);
    border-radius: 15px;
    border: 2px solid rgba(251, 111, 146, .9);
    padding: 5px;
    display: inline-block; 
    max-width: 100%; 
    word-wrap: break-word;
    text-align: justify;
}

.user_card .button-bar {
    display: flex; 
    justify-content: center; 
    position: absolute;
    bottom: 10px; 
    left: 0; 
    right: 0; 
}

.user_card .button-bar button {
  background-color: #88AB8E; 
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 11px;
  margin-top: 0px;
  margin-bottom: 2em;
  margin-left: 20px; 
  margin-right: 20px; 
  cursor: pointer;
  border-radius: 25px; 
  box-shadow: 0 4px #999;
  transition: all 0.3s ease;
  width: 100px;
  height: 40px;
  font-size: small;
}

div .active-button,
.user_card .button-bar button:hover {
  background-color: #45a049;
  box-shadow: 0 6px #666;
  transform: translateY(-2px);
}

#judgement_card {
    display: flex;
    flex-direction: row;
}

#jud-prompt {
    position: absolute; /* 绝对定位 */
    top: 210px; /* 根据需要调整 */
    left: 0;
    width: 100%; /* 使其宽度与父元素一致 */
    text-align: center; /* 居中对齐 */
    font-weight: 700;
    font-size: 15px;
    font-family: sans-serif;
}

/* selection_card */
#selection_card {
    display: flex;
    flex-direction: column; 
    margin-top: 0;
}

#selection_card .card_case {
    display: flex;
    flex-direction: row; 
    margin-left: -10%;
    margin-top: 0;
}

#selection_card .card_case img {
    width: 45%;
    height: auto; 
    border-radius: 15px;
    border: 4px solid rgba(251, 111, 146, .9);
    margin: 5%; 
}

#selection_card .user_card {
    display: flex;
    flex-direction: column;
    width: 120%;
    height: 150px; 
    margin: 0;
    padding: 15px 25px;
}

#selection_card .question {
    display: flex;
    align-items: center;
    font-size: 14px; 
}

#selection_card .Qtext {
    background-color: rgba(253, 246, 247, 0.978);
    border-radius: 15px;
    border: 2px solid rgba(251, 111, 146, .9);
    padding: 5px;
    display: inline-block;
}