@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #060404;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  cursor: pointer;
  border: none;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.headerPC {
  width: 100%;
  height: 80rem;
  padding: 0 40rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  cursor: pointer;
}
.headerPC .logoImg {
  width: 210rem;
  height: 70rem;
}
.headerPC .headBox {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headerPC .headBox p {
  font-family: Inter;
  font-weight: 500;
  font-style: italic;
  font-size: 30rem;
  color: white;
  margin: 0 auto;
}
.headerPC .headBox .headsearch {
  width: 294rem;
  height: 44rem;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.3019607843);
  box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.3019607843) inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  padding: 0 16px;
}
.headerPC .headBox .headsearch img {
  width: 30rem;
  height: 29rem;
}
.headerPC .headBox button {
  height: 44rem;
  padding: 2rem 5rem;
  border-radius: 4px;
  background: #976cfe;
}
.headerPC .headBox button p {
  font-family: Inter;
  font-weight: 500;
  font-style: italic;
  font-size: 30rem;
  color: white;
}

.titleBox {
  margin: 100rem auto;
}
.titleBox h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 65rem;
  line-height: 100%;
  letter-spacing: -1%;
  text-align: center;
  color: #fff;
}
.titleBox p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 35rem;
  line-height: 50rem;
  letter-spacing: -1%;
  text-align: center;
  color: #acadb6;
}

.common-button {
  min-width: 300rem;
  height: 86rem;
  display: block;
  margin: 50rem auto;
  padding: 20rem 20rem;
  background-image: linear-gradient(to right, #9363F9, #A9E1FF);
  border-radius: 8rem;
  color: #ffffff;
  font-family: Arial;
  font-size: 34rem;
  font-weight: 700;
  font-style: bold;
}

.banner {
  width: 100%;
  height: 1000rem;
  margin-top: 10rem;
  background-image: url("../image-les/banner-back.avif");
  background-position: center;
  background-size: 100% 1050rem;
  background-repeat: no-repeat;
  padding-top: 560rem;
}
.banner h1 {
  font-family: Poppins;
  font-weight: 1100;
  font-size: 80rem;
  font-style: bold;
  line-height: 100%;
  letter-spacing: -1%;
  text-align: center;
  color: #fff;
}
.banner span {
  color: #9D9FFC;
}
.banner .banner-content {
  width: 100%;
}
.banner .banner-mask {
  width: 100%;
}

.tag-buttons {
  width: 100%;
  margin-bottom: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15rem;
  z-index: 101;
}
.tag-buttons .tag-btn {
  padding: 20rem 40rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 30rem;
  color: white;
  background-color: #20234A;
  border-radius: 50rem;
  transition: all 0.3s ease;
}
.tag-buttons .tag-btn:hover {
  background-color: #E078FF;
}
.tag-buttons .tag-btn.active {
  border: 2rem solid #E078FF;
  background-color: rgba(98, 10, 176, 0.2901960784);
  color: #E078FF;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 500rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-container .carousel-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-container .carousel-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0.6s;
  gap: 50rem;
}
.carousel-container .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel-container .carousel-item.active {
  width: 384rem;
  height: 384rem;
  transform: translateX(0);
  opacity: 1;
  z-index: 10;
}
.carousel-container .carousel-item.prev-1 {
  width: 326rem;
  height: 326rem;
  transform: translateX(-227rem);
  z-index: 5;
}
.carousel-container .carousel-item.next-1 {
  width: 326rem;
  height: 326rem;
  transform: translateX(227em);
  z-index: 5;
}
.carousel-container .carousel-item.prev-2 {
  width: 257rem;
  height: 257rem;
  transform: translateX(-390rem);
  z-index: 3;
}
.carousel-container .carousel-item.next-2 {
  width: 257rem;
  height: 257rem;
  transform: translateX(390rem);
  z-index: 3;
}
.carousel-container .carousel-item.prev-3 {
  width: 203rem;
  height: 203rem;
  transform: translateX(-560rem);
  z-index: 2;
}
.carousel-container .carousel-item.next-3 {
  width: 203rem;
  height: 203rem;
  transform: translateX(560rem);
  z-index: 2;
}
.carousel-container .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  border-radius: 50%;
  width: 40rem;
  height: 40rem;
  font-size: 24rem;
  cursor: pointer;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.carousel-container #prev-btn {
  background-image: url("../image-les/prev.avif");
  background-position: center;
  background-size: 100% 100%;
  left: 200rem;
}
.carousel-container #next-btn {
  background-image: url("../image-les/next.avif");
  background-position: center;
  background-size: 100% 100%;
  right: 200rem;
}

.heartbeat {
  width: 1600rem;
  height: 900rem;
  margin: 50rem auto;
  display: flex;
  border: white solid 1rem;
  border-radius: 18rem;
  background-image: url("/image-les/heartbeat-bk.avif");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 40% 80%;
}
.heartbeat .heart-left {
  width: 45%;
  height: 90%;
  margin-left: 3%;
  margin-right: 2%;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heartbeat .heart-left h6 {
  margin-bottom: 40rem;
  font-family: Poppins;
  font-weight: 700;
  font-style: bold;
  font-size: 50rem;
  letter-spacing: -1%;
  color: white;
}
.heartbeat .heart-left p {
  font-family: Poppins;
  font-weight: 300;
  font-size: 34rem;
  letter-spacing: -1%;
  color: #AAAAAA;
}
.heartbeat .heart-left span {
  color: #3BFFFF;
}
.heartbeat .heart-right {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.heartbeat .heart-right img {
  width: 100%;
  height: 100%;
}

.role-album {
  width: 1800rem;
  height: 600rem;
  margin: 20rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50rem;
}
.role-album .album {
  height: 528rem;
  width: 516rem;
  border-radius: 10rem;
  overflow: hidden;
}
.role-album .album img {
  width: 100%;
  height: 100%;
}

.customizebox {
  width: 1600rem;
  height: 900rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40rem;
}
.customizebox .customize {
  width: 780rem;
  height: 100%;
}
.customizebox .customize img {
  width: 100%;
  height: 100%;
}

.image-wall {
  width: 100%;
  height: 1100rem;
  margin: 20rem auto;
  position: relative;
}
.image-wall img {
  position: absolute;
}
.image-wall img:hover {
  transform: scale(1.05);
}
.image-wall .wall1 {
  width: 368rem;
  height: 633rem;
  margin-left: 170rem;
  margin-top: 160rem;
}
.image-wall .wall2 {
  width: 646rem;
  height: 514rem;
  margin-left: 583rem;
  margin-top: 0;
}
.image-wall .wall3 {
  width: 230rem;
  height: 307rem;
  margin-left: 1260rem;
  margin-top: 207rem;
}
.image-wall .wall4 {
  width: 230rem;
  height: 307rem;
  margin-left: 1520rem;
  margin-top: 207rem;
}
.image-wall .wall5 {
  width: 384rem;
  height: 409rem;
  margin-left: 568rem;
  margin-top: 556rem;
}
.image-wall .wall6 {
  width: 501rem;
  height: 484rem;
  margin-left: 989rem;
  margin-top: 556rem;
}
.image-wall .wall7 {
  width: 230rem;
  height: 307rem;
  margin-left: 1520rem;
  margin-top: 556rem;
}

footer {
  width: 100%;
  height: 280rem;
  padding: 0 40rem;
  /* 核心磨砂效果 */
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  /* 模糊程度（数值越大越模糊） */
  background-color: rgba(255, 255, 255, 0.3);
  /* 半透明白色背景 */
  /* 增强质感 */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* 半透明边框 */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  /* 柔和阴影 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  cursor: pointer;
}
footer .footlogo {
  width: 200rem;
  height: 200rem;
}
footer .footbox {
  width: 85%;
  display: flex;
  align-items: center;
  border-left: white solid 1rem;
}
footer .footbox p {
  font-family: IntSF Pro Rounded;
  font-weight: 400;
  font-size: 50rem;
  color: white;
  margin: 0 auto;
}
footer .footbox button {
  min-width: 90%;
  height: 200rem;
  padding: auto 20rem;
  margin: auto;
  border-radius: 50rem;
  background: #976cfe;
}
footer .footbox button p {
  font-family: SF Pro Rounded;
  font-weight: 700;
  margin-left: 30rem;
  margin-right: 30rem;
  font-style: bold;
  font-size: 100rem;
  color: white;
}/*# sourceMappingURL=main.css.map */