/* swiper 部分 */

.swiper{
    width: 100%;
    padding-top: 0px;
    padding-bottom: 00px;
  }
  
  /* 平滑移动 */
  .swiper .swiper-wrapper{
    transition-timing-function: linear;
  }
  
  
  .swiper-slide{
    background-position: center;
    background-size: cover;
  
  
    /* 下面这行很重要,定义卡牌大小 */
  
    width:40vw;
    height: 20vw;
    display: flex;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    filter: blur(4px);
    background: rgb(255, 255, 255);
    border-radius: 6%;
    overflow: hidden;
    border: rgb(227, 100, 100) 10px solid;
    position: relative;
    align-items: center;
    z-index: 3;
  }
  
  .swiper-slide img{
    margin-top:-100px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 4
    /* top: -10%; */
    /* clip-path: ellipse(100% 75% at 50% 25%); */
  }
  
  .swiper-slide .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 75%;
    background: rgb(172, 140, 140);
    z-index: 5;
    align-items: center;
    text-align: center;
  }
  
  .swiper-slide .overlay h1{
    color: black;
    z-index: 6;
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
  }
  
  .swiper-slide-active{
    filter: blur(0px);
    background-color: whitesmoke;
  }
  
  /* 不知道什么注释啊 */
  .tag img {
    vertical-align: bottom;
    max-width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  
  
  .poster .title {
    top: 80%;
  }
  .main {
    margin-top: 150px;
  }
  .main .menu {
    display: none;
  }
  .main #content {
    background-color: transparent !important;
    max-width: 1000px;
    /* 弹性布局：flex: 1; 使得 #content 元素在父容器中能够占据剩余空间，通常用于 Flexbox 布局。 */
    flex: 1;
    padding: 0;
  }
  .main #content::before {
    display: none;
  }
  .main #content .s1 .h1-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
  }
  .main #content .s1 .h1-wrap h1 {
    position: relative;
    color: var(--mg);
    font-family: Montserrat-Black, sans-serif;
    font-size: 40px;
  }
  
  /* 这里调整板块化 */
  
  
  
  .main #content .s1 .line {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 30px;
  }
  
  
  
  
  .main #content .s1 .h1-wrap h1::after {
    content: attr(data-text);
    display: block;
    position: absolute;
    z-index: 1;
    left: 8px;
    top: -8px;
    width: fit-content;
    height: 100%;
    text-wrap: nowrap;
    color: var(--mg);
    padding: 2px;
    -webkit-text-stroke: 8px transparent;
    -webkit-background-clip: text;
    background-color: var(--bg);
  }
  
  
  /* Container with 3D perspective */
  .card-container {
    perspective: 1000px;
    width: 400px;
    height: 400px;
  
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
  /* Style for card, making it a 3D object */
  .card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s;
    border-radius: 50%;
  }
  
  /* Front face of the card */
  .front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%; /* 保持圆形 */
    backface-visibility: hidden;
  }
  /* Specific front face styling */
  .front {
    background-color: rgb(253, 243, 247);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    padding-top: 50px;
  }
  
  /* Back face styling */
  .back {
    background-color: #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: rotateY(180deg); /* Initially rotated to hide it */
  }
  
  /* Flip card on hover */
  .card-container:hover .card {
    transform: rotateY(180deg);
  }
  
  /* Other card styles */
  #content .card .hole {
    top: 20px;
    right: 20px;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--mg);
    overflow: hidden;
  }
  
  #content .card .hole::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--bg);
    top: 6px;
    left: 6px;
  }
  
  #content .card .mid {
    width: 75%;
    aspect-ratio: 1;
    position: relative;
  }
  
  #content .card h2{
    margin-top: -200px;
  }
  #content .card p{
    padding-left: 0px;
  
  }
  #content .card .mid .avatar {
    position: relative;
    transform-style: preserve-3d;
    z-index: 4;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid var(--mg);
    background-color: #fffdf7;
    background-position: center;
    background-size: cover;
  }
  
  #content .card .mid .scroll {
    position: absolute;
    z-index: 10;
    top: 0;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 20px);
    overflow: scroll;
    opacity: 0;
    transition: 1s;
  }
  
  #content .card .mid .scroll p {
    color: #395038;
    text-align: justify;
    text-indent: 1.5em;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  #content .card .bot {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  
  
  
  
  
  
  /*名字 */
  #content .card .bot .name {
    color: var(--mg);
    font-family: Montserrat-Bold;
    font-size: 25px;
    letter-spacing: 0.05px;
  }
  /* teg */
  #content .card .bot .tag {
    font-family: Nunito-Bold;
    /* background-image: url(wet.svg); */
    /* background-size: 5000%; */
    font-size: 18px;
    margin-left: -250px;color: #fffdf7;
    /* padding: 0 15px; */
    z-index: 5;
  
    
  }
  #content .card .bot .tag img{
    position: relative;
    margin-top: -20px;
    width: 250px;
    height: 50px;
    left: 160px;
    z-index: -1;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  #content .card .star {
    position: absolute;
  margin-top: -190px;
  margin-left: 200px;
    background-repeat: no-repeat;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: 1s;
  }
  #content .card .star img{
  
    width: 350px;
    height: 380px;
  
  
  }
  
  