body {
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
  background-color: #fdfdfd;
}
#header-canvas{
  /* 取消canvas */
  display: none !important;
}
.img-box{
  position: relative;
  display: block !important;
  width: 100vw;
}
#img1{
  width: 100%;
}

#title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: "Times New Roman", Times, serif;
  font-size: 8vw; /* 可根据需求调整字号大小 */
  text-align: center;
}
.bg-cv {
  position: fixed;
  z-index: -1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rows {
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
  /* min-height: 100vh; */
  display: grid;
  grid-auto-flow: row;
  grid-gap: 16px;
  grid-template-columns: repeat(4, auto);
  max-width: calc(250px * 4 + 16px * 5);
}

.im-wrapper {
  position: relative;
  /* overflow: hidden; */
}


.self-intro{
  border-radius: 10%;

  display: grid;
  place-items: center;
  position: absolute;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 1s;
  cursor: pointer;


  color: rgb(255, 255, 255);
  text-align: center;
  line-height: 67%;

  opacity: 0;
}
.im-wrapper:hover .self-intro{
  transition: opacity 1s;
  opacity: 1;
}

.im-im {
  border-radius: 10%;

  position: absolute;
  transition: opacity 1s;
  top: 0;
  left: 0;
  object-fit: cover;
  cursor: pointer;
}

.canv {
  border-radius: 10%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
}


.grouptitle{
  left: 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 36px;
  font-weight:bold;
  line-height: 0.6;
}
.wp{
  text-align: center;
}
.groupicon{
  height: 18vh;
  opacity: 1;
}
.groupicon.show {
  opacity: 1;
}


.matename{
  padding-top: 5%;
  line-height: calc(4vh);
  font-size: calc(5vh);
  font-weight: 400;
}
.slo1{
  font-size: calc(1.5vh);
  line-height: calc(1.7vh);
  width: 95%;
}
.slo2{
  font-size: calc(1.5vh);
  line-height: 1.7vh;
  width: 80%;
}

