/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* 包含 padding 和 border 到宽高计算中 */
}
body {
  height: 100vh; /* 视窗高度 */
  background-color: #0d0d0d;
  display: flex;
  flex-direction: column;
}
/* 内容 */
/* 每个屏幕模块 */
.screen {
  height: 100vh;
  display: flex;
}
/* 各个屏幕*/
.chaodai {
  width: 60%;
  height: 100%;
}
.yuantu {
  padding-top: 8%;
  width: 70%;
  position: absolute;
  left: -35%;
  z-index: 5;
}
.yuanhuan {
  padding-top: 8%;
  width: 45%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  position: relative;
}
.screen3 {
  display: flex;
  flex-direction: column;
}
.shangzise {
  width: 100%;
  height: 50vh;
  padding-right: 10%;
  padding-left: 10%;
  padding-top: 120px;
  background: #3f2e4c;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
p {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: rgba(255, 255, 255);
  text-align: start;
  vertical-align: top;
}
.xiaobiaoti img {
  height: 40px;
}

.xiaobiaoti {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: rgba(254, 194, 254, 1);
  font-family: 'huayuanmingchaoti', serif;
  font-weight: normal;
}
.dbxww {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}
.dbxww img {
  object-fit: cover;
}
.screen4 {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding-top: 120px;
}
.kwhjlkuang {
  width: 80%;
  height: 500px;
  border-radius: 5px;
  margin-top: 40px;
  border: 3px solid rgba(254, 194, 254, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.zongjie {
  width: 80%;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.kwhshang {
  width: 95%;
  height: 180px;
  padding-right: 25px;
  background: rgba(202, 200, 201, 1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  border-radius: 4px;
}
.xiaozi {
  font-size: 12px;
  line-height: 18px;
  margin-top: 8px;
}
.tupian {
  width: 30%;
  height: 110%;
  object-fit: cover;
}
.tupian img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
/* 图片鼠标悬停效果 */
.tupian:hover img {
  transform: scale(1.05);
}
.kwhxiaobiaoti {
  color: #26063a;
  font-weight: bold;
}
.neirong {
  width: 70%;
  display: flex;
  flex-direction: column;
  text-align: justify;
}
.neirong2 {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: justify;
}
.kwhxia {
  width: 95%;
  height: 180px;
  padding-left: 25px;
  background: rgba(189, 195, 219, 1);
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}
.kwhshang:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(133, 103, 133, 0.3);
}
.kwhxia:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(133, 103, 133, 0.3);
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
/* 第二屏样式 */
.screen2 {
  height: 100vh;
  display: flex;
}
/* 左侧样式 */
.left-container {
  width: 60%;
  padding-top: 9%;
  background-color: black;
  color: white;
  padding-left: 10vw;
  position: relative;
}

.left-content {
  width: 50%;
  position: absolute;
  left: 10vw;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.left-content.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* 右侧样式 */
.right-container {
  width: 40%;
  height: 100%;
  background-color: rgba(63, 44, 74, 1);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.right-container ul {
  list-style: none;
}

.right-container li {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding-left: 50px;
  transition: all 0.3s ease;
  z-index: 9999;
}

.right-container li:hover {
  transform: translateX(5px);
}

.right-container li span:last-child {
  transition: font-size 0.3s ease;
}

.right-container li.active span:last-child {
  font-size: 1.2em;
}

.dot {
  position: absolute;
  left: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  transform: translateX(-50%);
}

.dot::before,
.dot::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot::before {
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  opacity: 0;
}

.dot.active {
  background-color: white;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.dot.active::before {
  transform: scale(1);
  opacity: 1;
}

.dot.active::after {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2s infinite;
}

/* 悬停效果 */
.right-container li:hover .dot:not(.active) {
  transform: translateX(-50%) scale(1.2);
  background-color: rgba(255, 255, 255, 0.8);
}

/* 脉冲动画 */
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.lsyyzuoce-bt {
  font-size: 32px;
  font-family: "Noto Serif SC", serif;
  letter-spacing: 2px;
}
.yingwen {
  font-size: 12px;
  margin-top: -18px;
}
.daduan {
  width: 75%;
  text-align: justify;
}
.lsyyzuoce-tp {
  width: 75%;
  height: 30vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}
.lsyyzuoce-tp1 {
  width: 100%;
}
.lsyyzuoce-tp1 img {
  height: 100%;
  object-fit: cover;
}
.chaodaizhou {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.shang {
  position: absolute;
  top: 9.5%;
  left: 12%;
}
.chunqiu {
  position: absolute;
  top: 19%;
  left: 28%;
}
.tang {
  position: absolute;
  top: 33%;
  left: 38%;
}
.song {
  width: 100px;
  position: absolute;
  top: 52.5%;
  left: 42%;
}
.yuan {
  position: absolute;
  top: 72%;
  left: 38%;
}
.ming {
  position: absolute;
  top: 86%;
  left: 28%;
}
.qing {
  position: absolute;
  top: 95.5%;
  left: 12%;
}
.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.img-card img {
  transition: transform 0.5s ease;
}

.img-card:hover img {
  transform: scale(1.1);
}

.img-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.img-card:hover .img-card-overlay {
  transform: translateY(0);
}
.screen1 {
  width: 100%;
  height: 100vh;
  position: relative;
}
.shu1-l {
  height: 267%;
  object-fit: cover;
  position: absolute;
  top: -168vh;
  left: -19vw;
}
.sp-bt {
  width: 40%;
  object-fit: contain;
  position: absolute;
  right: 9%;
  top: 20%;
}
.sp-wenzi {
  position: absolute;
  top: 65%;
  right: 10%;
}
.sp-wenzi p {
  text-align: right;
  line-height: 1.8;
  font-size: 1.25rem;
  font-family: 'QIJIC', serif;
  font-weight: normal;
}
.lsyy-dbxww-xz {
  font-size: 14px;
  line-height: 1.8;
}
/* 按钮基本样式 */
.view-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: #b7b7b7;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 按钮下划线 */
.view-more-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #dfe9ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* 悬停效果 */
.view-more-button:hover {
  color: #a67bc3;
  transform: translateY(-2px);
}

.view-more-button:hover::after {
  transform: scaleX(1);
}

/* 图标样式 */
.button-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.view-more-button:hover .button-icon {
  transform: translateX(5px);
}

/* 加载状态 */
.view-more-button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.view-more-button.loading span {
  visibility: hidden;
}

.view-more-button.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid #9975b0;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.description {
  font-size: 14px;
  color: #64748b;
  margin-top: 20px;
}
