 /* 第一块 */
.content-li.li1 {
  display: flex;
  justify-content: space-between;
}

.content-li.li1>.li1-box {
  position: relative;
  flex: 0 0 32%;
  background-color: var(--headerCOlor);
  min-height: 200px;
  text-align: center;
  border-radius: 10px;
  padding: 30px 20px;
  box-sizing: border-box;
}

.li1-box>span {

  font-size: 24px;
  font-weight: 900;
  color: var(--headerFont);
  line-height: 20px;
  display: inline-block;
}

.li1-box>span.tag{
  color: var(--mainColor);
  font-size: 18px;
}

.li1-box>p {

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--headerFont);
  transition: .4s ease-in-out;
  margin: 0px;
}

/* 第二块，story */

.li2-box {
  /* width: 100%; */
  min-height: 50px;
  padding: 40px;
  box-shadow: 0 2px 4px -2px rgb(0 0 0 / 15%);
}

.li2-box blockquote::after {
  margin: 0;
  width: 50px;
  color: var(--mainColor);
  line-height: 55px;
  content: '"';
  position: absolute;
  bottom: -40px;
  right: -25px;
  font-size: 54px;
}

.li2-box blockquote::before {
  margin: 0;
  color: var(--mainColor);
  width: 50px;
  line-height: 55px;
  content: '"';
  position: absolute;
  top: -25px;
  left: -25px;
  font-size: 54px;
}

.li2-box blockquote {
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
  color: var(--headerFont);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
}

/* 第三  movies */
.li3-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.li3-box>div {
  box-sizing: border-box;
  padding: 25px;
  flex: 0 0 48%;
  min-height: 250px;
  margin-bottom: 20px;


  font-weight: 500;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
}

.movie-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.movie-poster {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.movie-actions {
  margin-top: 10px;
}
.play-btn, .download-btn {
  background-color: var(--mainColor);
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
  cursor: pointer;
  text-decoration: none;
}
.download-btn {
  background-color: #4CAF50;
}
.movie-description {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* 第四   music */
.li4-box {
  position: relative;
  overflow: hidden;
}
.li4box-ul {    /* 三个音乐框在同一行 */
  display: flex;
  flex-wrap: nowrap; 
  justify-content: space-around; 
  align-items: flex-start; 
  padding: 0;
  margin: 0;
  width: 100%; 
}
.li4box-car {
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px; 
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
  margin: 0 10px; 
  width: calc(33.333% - 20px); 
  max-width: calc(33.333% - 20px); 
}
.li4box-car > img {
  width: 100px;
  height: 100px;
  border: solid 3px #FCFCFE;
  border-radius: 50%;
  box-shadow: 0 2px 4px -2px rgb(0 0 0 / 15%);
  margin-bottom: 20px;
}
.artist {
  display: block; 
  margin-bottom: 10px; 
}
.audio-player { /* 播放器宽度，适应容器 */
  width: 100%; 
}