.container {
  position: relative;
  padding-top: .9rem;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sec_title {
  justify-content: center;
}

.title_icon {
  display: flex;
  width: 6rem;
  justify-content: space-between;
  gap: 1.605rem;
  margin: 0 auto;
}

.title_icon img {
  width: 2.195rem;
  height: .3rem;
}

.content {
  display: flex;
  gap: .4rem;
  padding: .7rem 1.4rem 1.38rem 1.4rem;
}

.content .left {
  width: 3.83rem;
  min-height: 11.25rem;
  padding: .52rem .6rem;
  background: rgba(201, 175, 149, 0.5);
  backdrop-filter: blur(.36rem);
  border-radius: .08rem;
}

.content .left .label {
  display: flex;
  align-items: start;
  gap: .15rem;

  font-weight: 500;
  font-family: 'LXGWWenKaiMonoTC-Medium';
  color: rgba(125, 63, 0, 1);
  line-height: 1.07;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(125, 63, 0, 1);
}

.content .left .label .icon {
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
  border: 1px solid rgba(125, 63, 0, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .left .label .icon img {
  width: .16rem;
  height: .16rem;
}

.content .left .list {
  margin: .32rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: .32rem;
}

.content .left .list .li {
  display: flex;
  align-items: center;
  padding-bottom: .32rem;
  border-bottom: 1px solid rgba(206, 180, 148, 1);
  cursor: pointer;
}

.content .left .list .li .icon {
  width: .3rem;
  height: .3rem;
  border: 1px solid rgba(125, 63, 0, 1);
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: .16rem;
}

.content .left .list .li:hover .icon,
.content .left .list .li.on .icon {
  background: rgba(125, 63, 0, 1);
}

.content .left .list .li .icon img {
  width: .21rem;
  height: .21rem;
}

.content .left .list .li .icon .normal,

.content .left .list .li:hover .icon .active,
.content .left .list .li.on .icon .active {
  display: block;
}

.content .left .list .li:hover .icon .normal,
.content .left .list .li .icon .active,
.content .left .list .li.on .icon .normal,
.content .left .list .li .icon .active {
  display: none;
}

.content .left .list .li .name {
  width: 1.8rem;
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(125, 63, 0, 1);

  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content .left .list .li .arrow {
  width: .15rem;
  height: .3rem;
  margin-left: .22rem;
  opacity: 0;
}

.content .left .list .li.on .arrow,
.content .left .list .li:hover .arrow {
  opacity: 1;
}

.content .right {
  width: 12.17rem;
  min-height: 11.6rem;
  /* background: url('../img/story_right_bg.png') no-repeat center center;
  background-size: 100% 100%; */
  padding: .5rem;
  position: relative;
  border: 2px solid rgba(195, 160, 124, 1);
}

.content .right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 235, 223, 1);
  z-index: -1;
}

.content .right .label {
  display: flex;
  align-items: start;
  gap: .16rem;

  font-weight: 500;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  color: rgba(125, 63, 0, 1);
  line-height: 1.07;
}

.content .right .label .icon {
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
  background: rgba(125, 63, 0, 1);
  border: 1px solid rgba(125, 63, 0, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .right .label .icon img {
  width: .21rem;
  height: .21rem;
}

.content .right .list {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .4rem;
}

.content .right .list .li {
  width: 3.5rem;
  background: rgba(255, 250, 244, 1);
  padding: .4rem .3rem;
}

.content .right .list .li .title {
  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  line-height: 1.5;
  color: rgba(51, 51, 51, 1);
  margin-bottom: .12rem;
}

.content .right .list .li .time {
  display: flex;
  justify-content: space-between;

  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  line-height: 1.5;
  color: rgba(51, 51, 51, 1);
  margin-bottom: .28rem;
}


.content .right .list .li .audio-player {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.content .right .list .li .audio-player .progress-container {
  width: 100%;
  height: 4px;
  background-color: rgba(237, 229, 222, 1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  margin-bottom: .24rem;
}

/* 已播放进度条 */
.content .right .list .li .audio-player .progress-bar {
  height: 100%;
  /*width: 30%;*/
  width: 0;
  /* 初始进度 */
  background-color: rgba(125, 63, 0, 1);
  /* 深棕色进度条 */
  border-radius: 2px;
  position: relative;
}

/* 进度条滑块圆点 */
.content .right .list .li .audio-player .progress-dot {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: rgba(125, 63, 0, 1);
  border-radius: 50%;
  cursor: pointer;
}

/* 播放/暂停按钮 - 进度条中下方 */
.content .right .list .li .audio-player .play-btn {
  background: none;
  border: none;
  color: rgba(125, 63, 0, 1);
  cursor: pointer;
  padding: 0;
  position: absolute;
  left: 50%;
  /* 定位在进度条下方 */
  transform: translateX(-50%);
  /* width: 30px;
  height: 30px; */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* 时间文本容器 */
.content .right .list .li .audio-player .time-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  top: -5px;
  /* 微调与进度条的间距 */
}

/* 时间文本通用样式 */
.content .right .list .li .audio-player .time {
  color: #8b5a2b;
  line-height: 1.5;
  margin: 0 0 .16rem 0;
}

/* 已播放时间 - 进度条左下角 */
.content .right .list .li .audio-player .current-time {
  text-align: left;
}

/* 总时长 - 进度条右下角 */
.content .right .list .li .audio-player .total-time {
  text-align: right;
}

.content .right .list .li .audio-player audio {
  display: none;
}

.content .right .list .li .dowmload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  border: 1px solid rgba(195, 160, 124, 1);
  padding: .135rem 0 ;
  border-radius: .08rem;

  font-weight: 400;
  font-family: 'LXGWWenKaiMonoTC-Regular';
  line-height: 1.5;
  color: rgba(51, 51, 51, 1);
}

.content .right .list .li .dowmload img {
  width: .285rem;
  height: .21rem;
}

.content .right .pagination_box {
  margin: .6rem 0 0 0;

}

@media (max-width: 767px) {
    .container {
        padding-top: 30PX;
    }
    
    .content {
        padding: 30px 20px 60px 20px;
        flex-direction: column;
    }
    .content .left {
        display: none;
    }
    .content .right {
        width: 100%;
    }
    .content .right .list .li {
        width: 100%;
    }
    .content .right .label .icon {
        width: 20px;
        height: 20px;
    }
    .content .right .label .icon img {
        width: 16px;
        height: 16px;
    }
    .content .right .label {
        font-size: 18px;
    }
    .content .right .list .li .title {
        font-size: 16px;
    }
    .content .right .list .li .time {
        font-size: 14px;
    }
    .content .right .list .li .audio-player .play-btn {
        font-size: 12px;
    }
    .content .right .list .li .dowmload {
        font-size: 16px;
    }
}

