.content-part9{
  width: 100%;
  height: auto;
  /* border: 2px solid red; */
  display: flex;
  flex-direction: column;
  padding-block: var(--main-block-padding);
  gap: 120px;
}
.content-part9-top{
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.content-part9-top>div{
  width: 100%;
  /* height: 800px; */
  /* border: 2px solid green; */
}
.content-part9-top-left{
  display: flex;
  flex-direction: column;
}

.content-part9-top-left-title{
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.content-part9-top-left-title > span{
  font-size: 5.5rem;
  
  text-transform: capitalize;
  white-space: pre-line;
}

.content-part9-top-left-title> span:first-child{
  font-weight: bold;
}
.content-part9-top-left-title> span:last-child{
  font-weight: thin;
}
.content-part9-top-left-info {
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.content-part9-top-left-info > div:first-child{
  height: 40px;
  width: 40px;
  background-color: blue;
  border-radius: 50%;
  background: url('../imgs/part9/avatar1.png');
  background-size: cover;
  filter: grayscale(100%);

}


.content-part9-top-left-info > div:last-child{
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
}

.content-part9-top-left-info > div:last-child > span:first-child{
  font-weight: 800;
  text-transform: capitalize;
}

.content-part9-top-left-text{
  font-size: 2rem;
  white-space: pre-line;
}


/* 右边图片结构 */

.content-part9-top-right {
  position: relative;
  font-size: 4rem;
  right: 100px;
}
.content-part9-top-right > img{
  width: 450px;
  height: 600px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.content-part9-top-right > span{
  position: absolute;
}
.content-part9-top-right > span:first-of-type{
  right: 0;
  top: -50px;
  height: 110px;
  width: 110px;
  background-color: rgb(233, 102, 66);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 30px;
  
}
.content-part9-top-right > span:last-of-type{
  left: 30px;
  bottom: 0;
  font-size: 16rem;
  font-weight: 700;
  color: white;
}

/* 下面部分 */
.content-part9-bottom{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.content-part9-bottom > div{
  width: 100%;
  /* border: 2px solid red; */
}

.content-part9-bottom-item{
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  z-index: 0;
  padding: 40px;
  padding-top: 100px;
}

.bottom-bg-item{
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

img.bottom-bg-item{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  filter: grayscale(100%);

}
div.bottom-bg-item{
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.8;
}

.content-part9-bottom-item-top{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-part9-bottom-item-top > :first-child{
  font-size: 0.8rem;
  color: rgb(159, 159, 159);
}
.content-part9-bottom-item-top > :last-child{
  font-size: 2rem;
  white-space: pre-line;
  line-height: 1.4;
  letter-spacing: 1px;
}

.content-part9-bottom-item-bottom{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-part9-bottom-item-bottom > :first-child{
  width: 50px;
  height: 50px;
  background-color: blue;
  border-radius: 50%;
  background: url('../imgs/part9/avatar1.png');
  background-size: cover;
  filter: grayscale(100%);
}

.content-part9-bottom-item-bottom.right-card > :first-child{
  background-image: url('../imgs/part9/avatar2.png');

}

.content-part9-bottom-item-bottom > :last-child{
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
}

.content-part9-bottom-item-bottom > :last-child > span{
  font-weight: 400;
}

/* 交互 */
@media (hover:hover){
  .content-part9-top:hover .content-part9-top-right> img{
    width: 600px;
    /* height: 670px; */
  }
  
}
@media screen and (max-width: 1280px) {
  .content-part9-top-right{
    right: 3vw;
  }
}

@media screen and (max-width: 850px) {
  .content-part9-top-left-title > span{
    font-size: 10vw;
  }
  .content-part9-top-left-text{
    font-size: 3vw;
  }
  .content-part9-top-left-info > div:last-child{
    flex-direction: column;
  }
  .content-part9-top{
    gap: 40px;
  }


  /* 底部卡片  */
  .content-part9-bottom-item{
    padding-top: 60px;
    height: 400px;
  }
  .content-part9-bottom-item-top > :last-child{
    font-size: 3.5vw;
  }
 
}



@media screen and (max-width: 768px){
  .content-part9-top-left-title > span{
    font-size: 10vw;
  }
  .content-part9-top-right > img{
    width: 100%;
    height: auto;
    aspect-ratio: 3/5;
  }
  .content-part9-top-right > span:first-of-type{
    font-size: 2.6rem;
    height: 70px;
    width: 70px;
    top: -20px;
    right: -20px;
  }
  .content-part9-top-right > span:last-of-type{
    bottom: -4vw;
    left: 10px;
    font-size: 12rem;
  }
  .content-part9-top-left-info > div:last-child{
    flex-direction: row;
  }
}

@media screen and (max-width: 660px){
  .content-part9-bottom-item-bottom > :first-child{
    width: 36px;
    height: 36px;
  }
  .content-part9-bottom-item-bottom{
    gap: 10px;
  }
  .content-part9-bottom-item-top > :last-child{
    font-size: 3vw;
  }
  .content-part9-bottom-item{
    padding-top: 40px;
    height: 350px;
  }
  .content-part9-bottom{
    gap: 20px;
  }
  .content-part9-bottom-item-bottom > :last-child{
    font-size: 0.6rem;
  }
}

@media screen and (max-width: 480px){
  .content-part9-top-right > img{
    aspect-ratio: 1/2.2;
  }
  .content-part9-top-right > span:last-of-type{
    bottom: -8vw;
    font-size: 10rem;
  }
  .content-part9-top-right > span:first-of-type{
    font-size: 1.6rem;
    height: 50px;
    width: 50px;
    border-bottom-left-radius: 12px;
  }
  .content-part9-top-left-info > div:last-child{
    font-size: 0.6rem;
  }
  .content-part9-top-left-info > div:first-child{
    height: 30px;
    width: 30px;
  }

  .content-part9-bottom{
    flex-direction: column;
  }

  .content-part9-bottom-item-top > :last-child{
    font-size: 6vw;
  }
  .content-part9{
    gap: 60px;
  }
  
}