.content-part1{
  display: flex;
  height: auto;
  justify-content: space-between;
  position: relative;
  padding-block: 60px;
  /* background-color: aqua; */
}
.content-part1 > div {
  width: 500px;
  /* height: 600px; */
  /* border: 2px solid rgb(216, 130, 32); */
}

/* 背景设置 */
.content-part1-bg.content-part1-bg{
  width: 100%;
  height: 100%;
  position: absolute;
  /* background-color: royalblue; */
  left: 0;
  display: flex;
  justify-content: center;
  z-index: -1;
  opacity: 0.1;
  top: 0;
}
.content-part1-bg > div{
  width: 100vw;
  height: 100%;
  background: linear-gradient(96.1deg, #FF7A7A 0.86%, #C1FF72 34.84%, #6675FF 65.94%, #F878B7 100%);
  flex-shrink: 0;
}

/* 左侧内容 */
.content-part1-left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
}


.content-part1-left-title{
  display: flex;
  flex-direction: column;
  /* border: 2px solid red; */
  gap: 40px;
}
.content-part1-left-title > span:first-child{
  font-size: 5rem;
  white-space: pre-line;
  font-weight: 300;
  letter-spacing: 2px;
}
.content-part1-left-title > span:last-child{
    font-size: 1.4rem;
    font-weight: 200;
    letter-spacing: 1px;
}

.content-part1-left-title > span:last-child > span {
  display: inline-block;
  padding: 10px 14px;
  background-color: black;
  color: white;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0px 30px 16px rgba(0, 0, 0, 0.125);
}
.content-part1-left-title > span:last-child > span > span{
  font-size: 0.8rem;
  vertical-align: top;
}

.content-part1-left-other {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.content-part1-left-other > div:first-child{
  /* width: 280px;
  height: 80px; */
  padding: 26px 40px;
  gap: 60px;
  background-color: #f36c18;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 1px;
  transition: gap  0.3s ease;
  cursor: pointer;
}
/* 按钮变长 */

/* .content-part1-left-other > div:first-child:hover{
  gap: 120px;
} */

@media (hover:hover){
  .content-part1-left-other > div:first-child:hover{
    gap: 120px;
  }
}


.content-part1-left-other > div:first-child > span{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-10px);
}
.content-part1-left-other > div:first-child > span::after{
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.183);
  border-radius: 50%;
  margin-left: 10px;
  position: absolute;
  transform: translate(10px);
}

.content-part1-left-other > div:last-child{
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.2rem;
  font-weight: 500;
}

.content-part1-left-other > div:last-child > div{
  width: 20px;
}
.content-part1-left-other > div:last-child > span{
  border-bottom: 1px solid gray;
  padding-bottom: 6px;
}

/* 右侧内容 */
.content-part1-right{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16rem;
  color: white;
  z-index: 0;
  position: absolute;
  /* border: 2px solid red; */
  right: var(--main-block-padding);
  bottom: 0;
}
.content-part1-right > img{
  width: 100%;
  z-index: 1;
}

.content-part1-right > :not(img){
  position: absolute;
}

.content-part1-right-circle{
  width: 400px;
  height: 400px;
  background-color: #ffffff89;
  border-radius: 50%;
  transform: translateY(-100px);
}
.content-part1-right > span{
  top: 100px;
}

.content-part1-right-items{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.content-part1-right-items > div{
  /* width: 100px;
  height: 100px; */
  /* background-color: #F878B7; */
  /* border: 1px solid red; */
  position: absolute;
}

/* 蓝底 */
.content-part1-right-items > div:nth-child(1){
  transform: translateX(-300px) translateY(-260px);
}
/* 黄底 */
.content-part1-right-items > div:nth-child(2){
  transform: translateX(-300px) translateY(200px);
}

.content-part1-right-items > div:nth-child(3){
  transform: translateX(200px) translateY(-220px);
}

/* 鼠标有交互的小头像 */
.content-part1-right-items-one{
  font-size: 1rem;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* 每一个头像部分的背景层 也就是一个容器层 */
.content-part1-right-items-one > div{
  width: 100px;
  height: 100px;
  background-color: #6675FF;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  box-shadow: 0px 30px  30px rgba(2, 2, 2, 0.211);
}

/* 真正的图片裁切层 */
.content-part1-right-items-one > div > div {
  width: 100%;
  height: 130%;
  /* border: 6px solid red; */
  display: flex;
  align-items: flex-end;
  border-radius: 100px;
  overflow: hidden;
  justify-content: center;
  pointer-events: none;
}
.content-part1-right-items-one > div > div > img{
  width: 100%;
  transition: width 0.3s ease-in-out;
}

@media (hover:hover){
  .content-part1-right-items-one > div:hover img {
    width: 130%;
  }
}

.content-part1-right-items-one > span {
  font-size: 0.8rem;
  background-color: white;
  padding: 10px 20px;
  text-wrap: nowrap;
  border-radius: 100px;
  text-transform: capitalize;
}

/* 修改不同的背景颜色 */
.content-part1-right-items > div:nth-child(2) >div{
  background-color: #fdb943;
}

.content-part1-right-items > div:nth-child(3) >div{
  background-color: #fe7a97;
}


/* 响应式断点处理 */
@media screen and (max-width: 1024px) {
  /* 蓝底 */
  .content-part1-right-items > div:nth-child(1){
    transform: translateX(-180px) translateY(-200px);
  }
  /* 黄底 */
  .content-part1-right-items > div:nth-child(2){
    transform: translateX(-200px) translateY(200px);
  }
  .content-part1-right-items > div:nth-child(3){
    transform: translateX(120px) translateY(-180px);
  }


  /* 人物 */
  .content-part1-right.content-part1-right{
    /* border: 2px solid red; */
    right: 0;
    /* width: 400px; */
    /* width: 400px!important; */
  }
  .content-part1-right > img{
    width: 38vw;

  }

  .content-part1-right-circle{
    width: 260px;
    height: 260px;
  }
  .content-part1-right > span{
    top: 0px;
    font-size: 26vw;
  }

  /* 文字 */
.content-part1-left{
  gap: 30px;
}

.content-part1-left-title{

  gap: 20px;
}
.content-part1-left-title > span:first-child{
  font-size: 7vw;
  white-space: pre-line;
  font-weight: 300;
  letter-spacing: 2px;
}
.content-part1-left-title > span:last-child{
    font-size: 2vw;
    font-weight: 200;
    letter-spacing: 1px;
}

.content-part1-left-title > span:last-child > span{
  padding: 8px 12px;
  font-size: 1rem;
}
.content-part1-left-title > span:last-child > span > span{
  font-size: 0.6rem;
  vertical-align: top;
}


 /* 按钮 */
 .content-part1-left-other{
  gap: 20px;
 }

 .content-part1-left-other > div:first-child{
  /* width: 280px;
  height: 80px; */
  padding: 18px 20px;
  gap: 60px;
  background-color: #f36c18;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  font-size: 1.2rem;
  
}



.content-part1-left-other > div:first-child > span{

  transform: translate(-10px);
}
.content-part1-left-other > div:first-child > span::after{
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.183);
  border-radius: 50%;
  margin-left: 10px;
  position: absolute;
  transform: translate(4px);
}

  .content-part1-left-other > div:last-child{
    font-size: 0.9rem;
    gap: 12px;
  }

  
  .content-part1-left-other > div:last-child > div{
    width: 15px;
  }
  .content-part1-left-other > div:last-child > span{
    padding-bottom: 3px;
  }

}


@media screen and (hover:hover) and (max-width: 1024px){
  /* 按钮变长 */

  .content-part1-left-other > div:first-child:hover{
    gap: 80px;
  }
}


@media screen and (max-width: 768px) {
  .content-part1{
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding-bottom: 0px;
  }
  .content-part1-right{
    position: relative;
  }


  /* 文字 */
.content-part1-left{
  gap: 30px;
  align-items: center;
}

.content-part1-left-title{

  gap: 30px;
  align-items: center;
}
.content-part1-left-title > span:first-child{
  font-size: 12vw;
  white-space: pre-line;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
}
.content-part1-left-title > span:last-child{
    font-size: 2vw;
    font-weight: 200;
    letter-spacing: 1px;
}

.content-part1-left-title > span:last-child > span{
  padding: 8px 12px;
  font-size: 1rem;
}
.content-part1-left-title > span:last-child > span > span{
  font-size: 0.6rem;
  vertical-align: top;
}

/* 按钮部分 */
.content-part1-left-other{
  align-items: center;
}


  /* 人物 */
  .content-part1-right.content-part1-right{
    /* border: 2px solid red; */
    right: 0;
    /* width: 400px; */
    /* width: 400px!important; */
  }
  .content-part1-right > img{
    width: 50vw;

  }

  .content-part1-right-circle{
    width: 30vw;
    height: 30vw;
  }
  .content-part1-right > span{
    top: 0px;
    font-size: 26vw;
  }


   /* 蓝底 */
   .content-part1-right-items > div:nth-child(1){
    transform: translateX(-180px) translateY(-200px);
  }
  /* 黄底 */
  .content-part1-right-items > div:nth-child(2){
    transform: translateX(-200px) translateY(120px);
  }
  .content-part1-right-items > div:nth-child(3){
    transform: translateX(160px) translateY(-180px);
  }

  .content-part1-right-items-one > div{
    width: 80px;
    height: 80px;
  }

}

@media screen and (max-width: 480px){

  .content-part1{

    gap: 60px;
  
  }

  /* 文字 */
  .content-part1-left{
    gap: 30px;
    align-items: center;
  }
  
  .content-part1-left-title{
  
    gap: 30px;
    align-items: center;
  }
  .content-part1-left-title > span:first-child{
    font-size: 12vw;
    white-space: pre-line;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
  }
  .content-part1-left-title > span:last-child{
      font-size: 4vw;

  }

   /* 人物 */
   .content-part1-right.content-part1-right{
    /* border: 2px solid red; */
    right: 0;
    /* width: 400px; */
    /* width: 400px!important; */
  }
  .content-part1-right > img{
    width: 70vw;
    height: 300px;
    object-fit: cover;
    object-position: top;
  }

  .content-part1-right-circle{
    width: 40vw;
    height: 40vw;
  }
  .content-part1-right > span{
    top: 0px;
    font-size: 32vw;
  }


   /* 蓝底 */
   .content-part1-right-items > div:nth-child(1){
    transform: translateX(-100px) translateY(-100px);
  }
  /* 黄底 */
  .content-part1-right-items > div:nth-child(2){
    transform: translateX(-100px) translateY(120px);
  }
  .content-part1-right-items > div:nth-child(3){
    transform: translateX(100px) translateY(-80px);
  }

  .content-part1-right-items-one > div{
    width: 50px;
    height: 50px;
  }
  .content-part1-right-items-one > span{
    font-size: 0.6rem;
    padding: 6px 10px;
  }

}