.vant-swiper-body-mini .nice-text{background-color:#07c160;padding:.3rem .1rem;color:#fff;font-size:.24rem;font-weight:700}.vant-swiper-body-mini .nice-text span{color:#fec72f}.vant-swiper-body-mini .nice-text label{background-color:#fff;color:#07c160;border-radius:.4rem;float:right;padding:.1rem .1rem;margin-top:-.08rem}.vant-swiper-body-mini .van-swipe{height:2rem}.vant-swiper-body-mini.radius,.vant-swiper-body-mini.radius .van-swipe{border-radius:.08rem}.vant-swiper-body-mini .van-swipe-item img{display:block;width:100%;height:100%}.m-scene-play-body{background-color:#fff}.prize-list{background:#fff;padding:.1rem .3rem}.prize-list .bd-box .item{margin-bottom:.2rem;box-shadow:0 .02rem .08rem 0 hsla(0,0%,62.7%,.5)}.prize-list .bd-box .item .image{height:2rem;position:relative}.prize-list .bd-box .item .image img{width:100%;height:100%}.prize-list .bd-box .item .image label{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAYFBMVEUAAAB/f3+/v7+zs7PMzMzJycnGxsa/v7/CwsLIyMjDw8PFxcXExMTHx8fGxsbExMTFxcXGxsbFxcXFxcXGxsbFxcXGxsbGxsbExMTFxcXFxcXFxcXExMTFxcXGxsbFxcW9W9zkAAAAH3RSTlMAAgQKChMbHCoqN1hfX3iHlpeen6u0tNLU1OPr9Pj+hzYalQAAAPhJREFUOMudldsSgjAMRBeQi4AUlItSS/7/L33Q0V7SUtzHzpnuJE22gK6k7sZFKiWXsasT+FSIlTStomCxvFdkSfW5yzWSGMnGwtJhI1bbkOpcNpFXU6bdN1NA8+/OgYIavnVsYXD7VJRL2pF8d6mnXfUAUJp9vjwZUJUAhHmG84MhBZCsFojTzQXXBDXZIMDY1+gYEJVj32HkQNd+xMKCjv0C6QEtewnlA017FQKvBui3vpvWvmJau5jo9kQ3nHvClnvC6KFwxqzyjFnc4BZHViF+uaLXNT4AkE4hbtJiKguEz5z9E3vxQXogmgGUdtiX3n8h8H28ALpjis/Lm8ymAAAAAElFTkSuQmCC);background-size:100% 100%;position:absolute;width:.5rem;height:.5rem;left:50%;top:50%;margin-left:-.25rem;margin-top:-.25rem}.prize-list .bd-box .item .text{font-size:.24rem;text-align:center;padding:.2rem 0}.video-buy-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .video-preview {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .video-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .locked-text {
    color: white;
    margin-top: 10px;
    font-size: 16px;
  }
  
  .buy-buttons {
    margin-top: 15px;
  }
  
  .buy-button {
    margin-bottom: 10px;
  }
  
  .buy-button.monthly {
    background: #3390ff;
  }
  .buy-button.yearly {
    background: #eb31c9;
  }
  /* 这些样式需要添加到相应的CSS文件中，如e1c9.css */

/* 底部固定的评论输入框 */
.comment-input-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    z-index: 100;
    border-top: 1px solid #f0f0f0;
  }
  
  .comment-input-wrapper {
    display: flex;
    align-items: center;
  }
  
  .comment-field {
    flex: 1;
    margin-right: 8px;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 5px 5px;
  }
  
  .comment-field .van-field__control {
    min-height: 36px;
    padding: 8px 10px;
  }
  
  .comment-field .van-field__word-limit {
    margin-right: 10px;
    font-size: 12px;
    color: #999;
  }
  
  .send-button {
    flex-shrink: 0;
    height: 36px;
    padding: 0 16px !important;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .send-button:active {
    transform: scale(0.95);
  }
  
  /* 为了避免底部评论框遮挡内容，给页面底部添加内边距 */
 
  
  /* 修改评论列表区域的样式以适应底部固定输入框 */
  .comment-section {
    margin-bottom: 60px; /* 确保最后一条评论不被输入框遮挡 */
  }
  
  /* 微信风格的评论项 */
  .comment-item {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .comment-user {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .comment-item .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
  }
  
  .comment-item .user-info {
    flex: 1;
  }
  
  .comment-item.username {
    font-weight: bold;
    color: #333;
    font-size: 14px;
  }
  
  .comment-item .time {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
  }
  
  .comment-content {
    color: #333;
    line-height: 1.5;
    margin: 5px 0 5px 46px; /* 缩进对齐头像右侧 */
    font-size: 14px;
    word-break: break-word;
  }
  
  .comment-actions {
    display: flex;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    margin-left: 46px; /* 缩进对齐头像右侧 */
  }
  
  .like-btn, .reply-btn {
    margin-right: 15px;
    cursor: pointer;
  }
  
  .like-btn:hover, .reply-btn:hover {
    color: #07c160;
  }
  /* 回复列表样式 */
.reply-list {
    margin-left: 50px;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 2px solid #f0f0f0;
  }
  
  .reply-item {
    padding: 8px 0;
    border-bottom: 1px dashed #f5f5f5;
  }
  
  .reply-item:last-child {
    border-bottom: none;
  }
  
  .reply-user {
    display: flex;
    align-items: center;
  }
  
  .reply-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
  }
  
  .reply-user-info {
    flex: 1;
  }
  
  .reply-username {
    font-weight: bold;
    color: #333;
    font-size: 12px;
  }
  
  .reply-time {
    font-size: 10px;
    color: #999;
  }
  
  .reply-content {
    margin: 5px 0 5px 32px;
    color: #333;
    line-height: 1.5;
    font-size: 13px;
  }
  
  .reply-actions {
    margin-left: 32px;
    color: #999;
    font-size: 10px;
  }
  
  .reply-like-btn {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
  }

  /* 展开回复按钮样式 */
.show-more-replies {
  padding: 5px 0;
  color: #07c160;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  margin-top: 5px;
}

.show-more-replies:hover {
  background-color: #f7f7f7;
}

.show-more-replies .van-icon {
  vertical-align: -2px;
  margin-left: 3px;
}

/* 回复列表过渡动画 */
.reply-list {
  transition: max-height 0.3s ease;
}

/* 回复项添加动画效果 */
.reply-item {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 回复引用样式 */
.reply-reference {
    color: #07c160;
    font-weight: bold;
    margin-right: 4px;
  }
  
  /* 回复按钮样式 */
  .reply-reply-btn {
    display: inline-block;
    margin-left: 15px;
    color: #999;
    cursor: pointer;
  }
  
  .reply-reply-btn:hover {
    color: #07c160;
  }
  
  /* 回复层级样式 */
  .reply-item {
    transition: background-color 0.2s ease;
  }
  
  .reply-item:hover {
    background-color: #f9f9f9;
  }

/* 回复状态栏样式 */
.reply-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 5px 10px 0;
  color: #666;
}

.reply-tip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
}

.cancel-reply {
  color: #07c160;
  padding: 2px 8px;
  border-radius: 10px;
  cursor: pointer;
}

.cancel-reply:active {
  background-color: rgba(7, 193, 96, 0.1);
}

/* 改进回复列表样式 */
.reply-list {
  margin: 10px 0 5px 40px;
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
}

.reply-item {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background-color 0.2s ease;
}

.reply-item:last-child {
  border-bottom: none;
}

.reply-user {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.reply-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

.reply-user-info {
  flex: 1;
}

.reply-username {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.reply-time {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

.reply-content {
  font-size: 14px;
  line-height: 1.5;
  margin: 5px 0;
  word-break: break-all;
}

.reply-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

.reply-like-btn, .reply-reply-btn {
  font-size: 12px;
  color: #666;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.reply-like-btn:hover, .reply-reply-btn:hover {
  color: #07c160;
}

.reply-reference {
  color: #07c160;
  font-weight: 500;
  margin-right: 4px;
  font-size: 13px;
}

/* 展开收起按钮样式 */
.show-more-replies {
  text-align: center;
  padding: 6px 0;
  font-size: 13px;
  color: #07c160;
  background-color: rgba(7, 193, 96, 0.05);
  cursor: pointer;
  transition: background-color 0.2s;
}

.show-more-replies:hover {
  background-color: rgba(7, 193, 96, 0.1);
}

.show-more-replies .van-icon {
  margin-left: 5px;
  vertical-align: -3px;
}

/* 确保底部有足够空间不被固定输入框遮挡 */
.prize-list {
  padding-bottom: 60px;
}

/* 美化评论列表样式 */
.comment-section {
  margin-top: 15px;
}

.comment-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding: 0 15px;
  margin-bottom: 10px;
}

.comment-list {
  padding: 0 10px;
}

.comment-item {
  padding: 12px 5px;
  border-bottom: 1px solid #f0f0f0;
}

.comment-user {
  display: flex;
  align-items: center;
}



.comment-content {
  margin: 8px 0 8px 46px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  word-break: break-all;
}

.comment-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
  padding-right: 10px;
}

.like-btn, .reply-btn {
  font-size: 12px;
  color: #666;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 15px;
  cursor: pointer;
  transition: color 0.2s;
}

.like-btn:hover, .reply-btn:hover {
  color: #07c160;
}

/* 空评论状态样式 */
.no-comment {
  text-align: center;
  padding: 30px 0;
  color: #999;
}

.no-comment .van-icon {
  display: block;
  margin: 0 auto 10px;
  color: #ddd;
}

.no-comment p {
  font-size: 14px;
}
.reply-to-name {
    color: #07c160;
    font-weight: bold;
  }
  
  .reply-reply-btn {
    margin-right: 15px;
    cursor: pointer;
  }
  
  .reply-reply-btn:hover {
    color: #07c160;
  }
  .comment-actions, .reply-actions {
    display: flex;
    gap: 15px; /* 按钮之间的间距 */
    margin-top: 8px;
    font-size: 15px; /* 增大字体大小 */
  }
  
  .like-btn, .reply-btn, .reply-like-btn, .reply-reply-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
  }
  
  .like-btn:hover, .reply-btn:hover, .reply-like-btn:hover, .reply-reply-btn:hover {
    color: #07c160;
  }
  
  .like-btn .van-icon, .reply-btn .van-icon, 
  .reply-like-btn .van-icon, .reply-reply-btn .van-icon {
    margin-right: 2px;
  }
  
  /* 确保回复项也有适当的样式 */
  .reply-item {
    padding: 8px 10px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  
  .reply-user {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
  }
  
  .reply-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
  }
  
  .reply-content {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
  } 