@import url("https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

:root {
  --mi-purple: #8c1fe6;
  --mi2-purple: #480080;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  background: linear-gradient(-130deg, #2a034b, #430575);
  padding: 28px;
  z-index: 1;
}

/* 设置滚动条 */
/* 滚动条宽度和高度 */
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}
/* 设置轨道背景色 圆角*/
::-webkit-scrollbar-track {
  background-color: rgba(111, 0, 255, 0.568);
}
/* 设置滑块样式 圆角*/
::-webkit-scrollbar-thumb {
  background-color: var(--mi-purple);
  border-radius: 4px;
}
/* 鼠标悬停时滑块样式 */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--mi2-purple);
}
/* 滑动条上下按钮样式 */
::-webkit-scrollbar-button {
  background-color: var(--mi2-purple);
}

.w {
  max-width: 1600px;
  margin: 0 auto;
}

.container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  min-width: auto;
  width: 100%;
}

.container .headerLogo a svg {
  width: 60px;
  height: 60px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  z-index: 2;
}

.headerNav ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
}

.headerNav ul li {
  text-align: center;
  margin: 0 10px;
  transition: all 0.2s ease-in-out;
}

.headerNav ul li:hover a {
  color: #8c1fe6;
}

.headerNav ul li a {
  font-size: 20px;
  color: #fff;
  padding: 0 10px;
}

.headerConnect button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  color: #fff;
  background: #8c1fe6;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.2s ease-in-out;
}

.headerConnect button:hover {
  background: #6a18a8;
}

/* 汉堡菜单样式 */
.headerBurge {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

/* 汉堡菜单激活状态 */
.headerBurge.active {
  transform: rotate(90deg);
}

/* 导航栏展开状态 */
.headerNav.active ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  right: 0;
  width: auto;
  background-color: #3d056b;
  border-radius: 0 0 2rem 2rem;
  padding: 20px;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
  z-index: -1;
}

.headerNav.active ul li {
  margin: 10px 0;
  text-align: center;
}

@media (max-width: 900px) {
  .headerNav ul {
    display: none;
  }

  .headerBurge {
    display: block;
  }

  .headerConnect {
    display: none;
  }
}

@media (max-width: 500px) {
  .header {
    padding: 20px 30px;
  }

  .container .headerLogo a svg {
    width: 50px;
    height: 50px;
  }

  .container {
    border-radius: 5rem;
  }
}

.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  padding: 20px;
  color: #fff;
  gap: 25px;
  margin-top: 100px;
}

.bannerText {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.bannerText h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.bannerText h1 span {
  color: #8c1fe6;
  text-shadow: 0 0 20px rgba(140, 31, 230, 0.5);
}

.bannerText h2 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.bannerText p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.bannerImg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bannerImg img {
  width: 100%;
  height: auto;
  max-width: 700px;
  border-radius: 2rem;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
  transition: all 0.2s ease-in-out;
}

.bannerImg img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .banner {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    margin-top: 50px;
  }

  .bannerText {
    order: 2;
    text-align: center;
  }

  .bannerText h1 {
    font-size: 36px;
    font-weight: 700;
  }

  .bannerText h2 {
    font-size: 20px;
    font-weight: 400;
  }

  .bannerImg {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bannerImg img{
    width: 80%;
    height: auto;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {

  .bannerText h1 {
    font-size: 30px;
    font-weight: 600;
  }

  .bannerText h2 {
    font-size: 16px;
    font-weight: 400;
  }
}

.album {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  margin-top: 50px;
}

.album h2 , .live h2{
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.albumImg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.albumImg img {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 2rem;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
  transition: all 0.2s ease-in-out;
}

.albumImg img:hover {
  transform: scale(1.05);
}

.albumImg li p:nth-of-type(1) {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 5px 0 5px;
}

.albumImg li p:nth-of-type(2) {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin: 5px 5px 15px 5px;
}

@media (max-width: 1200px) {
  .albumImg {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 500px) and (max-width: 900px) {
  .album{
    margin-top: 50px;
  }
  .albumImg {
    grid-template-columns: repeat(2, 1fr);
  }
}

.live{
  width: 100%;
  margin: 100px auto 0;
}

.live h2 {
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.liveContain {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.liveContain ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}
.liveContain ul li {
  width: 100%;
  max-width: 520px;
}
.liveContain ul li img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
  transition: all 0.2s ease-in-out;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .liveContain ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .liveContain ul {
    grid-template-columns: 1fr;
  }
  .live h2 {
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .liveContain ul li img {
    height: 280px;
  }
  .live h2 {
    font-size: 28px;
  }
}
.liveContain ul li img:hover {
  transform: scale(1.05);
}
.liveContain ul li p{
  text-align: center;
}
.liveContain ul li p:nth-of-type(1) {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 5px 0 5px;
}
.liveContain ul li p:nth-of-type(2) {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin: 5px 5px 15px 5px;
}

.story{
  width: 100%;
  margin: 100px auto 0;
}

.story h2 {
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.footer{
  text-align: center;
  margin-top: 200px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}






