/* 此css文件仅用作integrated-human-practices */

body {
background-color: rgb(255, 255, 255) !important;  
}

.content h1 {
font-family: 'Prompt bold', serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36.6pt;
  text-align: center;
  z-index: 1;
  color: #395541;
    position: relative;
  display: inline-block;
}

.content h2 {
font-family: 'Prompt bold', serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 35.6pt;
  color: #9c3c29;
  z-index: 1;
}

.content h3 {
font-family: 'Prompt', serif;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size:23pt;
  color: #9c3d2a;
  z-index: 1;
}

.content h4 {
font-family: 'Prompt', serif;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16.7pt;
  z-index: 1;
}

.content h5 {
font-family: 'Prompt', serif;    
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16.7pt;
  z-index: 1;
}

.content h6 {
font-family: 'Prompt', serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16.7pt;
  z-index: 1;
}

.content p, .content li {
  font-family: 'Proza Libre', serif;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: max(1em, 1.3vw);
  z-index: 1;
}

/* 标题下方灰色方块阴影效果 */

.content .title-shadow-block, .content h1{
  position: relative;
  display: inline-block;
  z-index: 0;
}

.content .title-shadow-block::after, .content h1::after {
  content: '';
  position: absolute;
  left: 15px;
  bottom: -4px;
  width: 100%;
  height: 25.7px;
  background-color: rgba(128, 128, 128, 0.5);
  transition: all 0.3s ease;
  z-index: -1;
}

.content .title-shadow-block:hover::after, .content h1:hover::after {
  background-color: rgba(128, 128, 128, 0.6);
}

/* 灰色圆角文本框 */
.content .text {
  position: relative;
  background-color: #9ca39c6c;
  padding: 5px 10px 5px 50px;
  border-radius: 10px;
  font-size: 14.7pt;
}

/* 胶囊引用样式 */
.quote-capsule {
  position: relative;
  background-color: #F9F7F3;
  margin: 5vw 10vw 0 auto;
  padding: 3vw 3vw;
  border-radius: 50vw;
  font-weight: bold;
  box-sizing: border-box;
}

/* 使用 ::after 伪元素创建胶囊底部的装饰线条 */
.quote-capsule::after {
  content: '';
  position: absolute;
  bottom: 2.5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1.5px;
  background-color: black;
}

/* 胶囊内部 p 标签的通用样式 */
.quote-capsule p {
  font-size: 1.4vw;
  margin: 0;
  padding: 0;
}

/* 第一段引文的样式 */
.quote-capsule p:first-child {
  text-align: center;
  margin-bottom: 1vw;
}

/* 第二段署名的样式 */
.quote-capsule p:last-child {
  text-align: right;
  padding-right: 5vw;
}

/* ---------------------------几个背景--------------------------- */
.rectangle-bg {
  background-color: #F9F7F3; /* 设置背景颜色 */
  width: 60vw;
  border-radius: 8px;
  padding: 2vw; /* 在内容和边框之间添加一些内边距 */
  box-sizing: border-box; /* 确保padding不会影响总宽度 */
}

/* 主要的矩形容器样式 */
.callout-box {
  background-color: rgb(246, 219, 178, 0.2);
  border-radius: 8px;
  padding: 3vw;
  position: relative; /* 关键：为伪元素提供定位的锚点 */
  width: 60vw;
  margin-bottom: 10vw; /* 确保下方三角形有显示空间 */
}

/* 使用 ::after 伪元素创建三角形 */
.callout-box::after {
  content: '';
  position: absolute;
  bottom: -7vw;
  left: 3vw;
  width: 3vw;
  height: 0;
  border-left: 0px solid transparent; /* 左边框透明 */
  border-right: 10vw solid transparent; /* 右边框透明 */
  border-top: 7vw solid rgb(246, 219, 178, 0.2); /* 顶边框有颜色，形成一个向下的三角形 */
}


/* 右上角箭头矩形标注的样式 */
.callout-box-tr {
  background-color: #E6D1CA;
  padding: 25px;
  border-radius: 8px;
  position: relative; 
  width: 38vw;
  left: 11vw;
  top: -7vw;
  margin-top: 20px; /* 在上方留出空间给箭头 */
  height: 22vw;
}

/* 使用 ::after 伪元素创建指向上方的三角形 */
.callout-box-tr::after {
  content: '';
  position: absolute;
  top: -6.8vw; /* 将三角形定位到矩形的上方 */
  right: 5vw; /* 控制三角形距离右侧的距离 */
  width: 0;
  height: 0;
  border-left: 10vw solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 7vw solid #E6D1CA; 
}

/* --- Survey部分动画 --- */
/* 可点击的触发器图片样式 */
.clickable-trigger {
    cursor: pointer;
    transition: transform 0.5s ease;
    z-index: 2;
}

.clickable-trigger.active {
    transform: scale(1.1);
    z-index: 3;
}

/* 滑动div的样式 */
.slide-div {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-30px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.slide-div.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* --- Find Out More 按钮动画 --- */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

/* 应用于按钮的默认样式 */
.find-out-more {
  cursor: pointer;
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

/* 动态高度占位符添加样式 */
#survey-placeholder {
  height: 20vw;
  transition: height 0.5s ease-in-out;
}

/* -----------------采访细节名片--------------- */
/* 时间线包裹容器 */
.timeline-wrapper {
    position: relative; /* 为绝对定位的伪元素(虚线)提供定位上下文 */
}

/* 创建一条连续的垂直虚线 */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 35px;
    bottom: 0;
    left: 70.5px;
    width: 0;
    border-left: 3px dashed #e8e0d6;
}

.timeline-entry {
    display: flex; 
    font-family: serif; 
    max-width: 800px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

/* 左栏：包含虚线和日期的容器 */
.timeline-line-container {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    padding-left: 20px;
}

/* 日期文本的样式 */
.timeline-line-container .date {
    font-size: 20pt;
    color: rgb(64, 81, 68);
    padding-top: 22px;
    font-family: 'Prompt', serif;
    margin-left: -90px;

}

/* 时间轴上的圆点是使用伪元素创建的 */
.timeline-line-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 64.4px;
    width: 15px;
    height: 15px;
    background-color: #f8f0e5;
    border-radius: 50%;
    border: 2px solid #6d645a;
    z-index: 2;
}

/* 右栏：包含所有文本和图片内容的容器 */
.timeline-content-container {
    flex-grow: 1; /* 允许此列占据剩余空间 */
}

/* "Shaping the Idea" 标签的样式 */
.idea-label {
    display: inline-block; /* 使背景宽度与文本宽度一致 */
    background-color: #F6F1EA;
    padding: 20px 35px;
    border-radius: 20px;
    font-size: 20pt;
    font-weight: bold;
    color: rgb(64, 81, 68);
    font-family: 'Prompt', serif;
}

/* 包含采访细节的主要白色卡片 */
.interview-card {
    display: flex; /* 使用 flexbox 将文本和图片并排定位 */
    position: relative; /* 用于在内部绝对定位 "more..." 按钮 */
    background-color: #F6F1EA;
    border: 1px solid #f0e9e0;
    border-radius: 20px;
    padding: 30px;
    width: 55vw;
    margin-bottom: 40px;
    margin-top: 15px; /* "Shaping the Idea" 标签下方的间距 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.purpose {    
    padding: 30px;
    padding-top: 30px ;
    background-color: #FBFBFA;
    border-radius: 12px;
    min-height: 40px;
}

.research-interests, .title {
    padding-right: 310px ;
    text-align: left !important; 
}


/* 卡片内所有文本的容器 */
.text-content {
    padding-right: 20px; /* 文本和肖像之间的间距 */
    font-family: 'Proza Libre', serif;
}

.text-content h3 {
    margin: 0 0 10px 0;
    font-size: 30pt;
    font-family: 'Proza Libre', serif;
    color: rgb(64, 81, 68);
}

.text-content h4 {
    margin: 0 0 10px 0;
    font-size: 24pt;
    font-family: 'Proza Libre', serif;
    color: rgb(64, 81, 68);
    margin-bottom: -30px;
    padding-left: 10px;
}

.text-content p {
    margin: 5px 0;
    line-height: 1.6;
    font-family: 'Proza Libre', serif;
    color: rgb(64, 81, 68);
    font-size: 14pt;
}

.text-content .title {
    font-style: italic;
}

.text-content h4 {
    margin: 20px 0 5px 0;
    font-size: 24pt;
    color: rgb(64, 81, 68);
}

/* 肖像图片的容器 */
.image-content {
    flex-shrink: 0;
    display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute; 
  right: 30px;
}

.portrait {
    height: 230px; /* 设置肖像的宽度 */
    width: auto;
}

/* "more..." 按钮的样式 */
.more-button {
    position: absolute; /* 相对于 .interview-card 定位 */
    bottom: 15px;
    right: 25px;
    width: 12vw; /* 根据需要调整大小 */
    cursor: pointer;
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

/* 滑出详情覆盖层的基础样式 */
.more-details-overlay {
    position: absolute; /* 绝对定位，覆盖父元素 */
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: rgba(176, 157, 125, 0.9);
    border-radius: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    z-index: 10;
}

/* 滑出详情覆盖层显示时的样式 */
.more-details-overlay.show-overlay {
    opacity: 1;
    visibility: visible;
}

/* 覆盖层内部内容的样式 */
.more-details-overlay .overlay-content {
    color: white; /* 文字颜色为白色 */
    text-align: left; /* 根据需要调整文本对齐 */
    max-height: 100%; /* 限制内容高度 */
    overflow-y: auto; /* 如果内容溢出则显示滚动条 */
    /* 其他样式，例如字体大小，行高等等 */
    font-size: 14pt;
}

/* 覆盖层内部文字样式 */
.more-details-overlay .overlay-content h3 {
    color: white;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 24pt;
    font-family: 'Proza Libre', serif;
}

.more-details-overlay .overlay-content p {
    margin: 15px;
    font-size: 14pt;
    font-family: 'Proza Libre', serif;
}

.callout-box-end {
  background-color: rgb(246, 219, 178, 0.2);
  border-radius: 8px;
  padding: 3vw;
  position: relative;
  width: 65vw;
  right: 2vw;
  margin: 0 auto 5vw auto;
  color: rgb(64, 81, 68);
  text-align: center;
}

.callout-box-end > p {
  text-align: justify;
  margin-bottom: 2vw;
}

.content-wrapper {
  display: flex;
  align-items: center;   /* 让图片和文本框在垂直方向上居中对齐 */
  flex-wrap: wrap;
  gap: 2vw;              /* 在图片和文本框之间创建一个间隙 */
}

/* 修改后的文本框样式 */
.callout-box-content {
  flex: 0 1 calc((100% - 10vw) / 2);
  position: relative;
  background-color: #FBFBFA;
  border-radius: 12px;
  padding: 2vw;
  flex: 1;
  text-align: left;
  border-radius: 20px;
}

/* 文本框内的 H3 标题样式 */
.callout-box-content h3 {
  position: absolute;
  font-family: 'Prompt bold', serif;
  font-size: 1.8vw;
  top: -30px;
  color: rgb(64, 81, 68);
}

.callout-box-content p {
  font-size: 1.1vw;
}


/* 此css文件仅用作integrated-human-practices */
