/**
 * base style
 */
/**
 * mixins
 */
/**
 * reset style
 */
/*内外边距通常让各个浏览器样式的表现位置不同*/
body,
div,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
textarea,
p,
th,
td,
hr,
button,
article,
aside,
details,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/*
  去除默认边框
  图片与外围容器贴合
  img缩放处理
*/
img {
  border: 0;
  vertical-align: top;
  width: 100%;
  height: 100%;
}
/*去掉列表前的标识, li 会继承，大部分网站通常用列表来很多内容，所以应该当去*/
ul,
li {
  list-style: none;
}
button,
input,
select,
textarea {
  /*表单元素不继承父级 font 的问题*/
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  /*去chrome focus默认的高亮边框*/
  outline: none;
}
/**
 * html5  reset style
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}
/*如同img标签*/
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  /*没有controls属性统一不显示，*/
  display: none;
  /*防止IOS5下多余的高度*/
  height: 0;
}
/*
 重置a元素：
    1. 去掉IE10中已激活链接的灰色背景
    2. 处理chrome与其它浏览器在a:focus时的不同
    3. 提升a:active,a:hover时元素的可读性
    4. 去掉下划线
 */
a {
  background: transparent;
  /*1*/
}
a:focus {
  outline: thin dotted;
  /*2*/
}
a:active,
a:hover {
  outline: 0;
  /*3*/
}
a:link,
a:visited,
ins {
  text-decoration: none;
  /* 4*/
}
/*
    统一盒模型
*/
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: none;
  /*屏蔽浏览器默认字体大小*/
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /*去除a标签点击阴影*/
}
html,
body {
  min-height: 100%;
}
html {
  height: 100%;
}
body {
  font-family: "微软雅黑", Arial, Helvetica, sans-serif;
  color: #000000;
  -webkit-backface-visibility: hidden;
  background: #ffffff;
  height: 100%;
}
pre {
  font-family: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.ellipsis-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-word;
}
.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
a {
  color: inherit;
  cursor: pointer;
}
video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-height: 6rem;
  background-color: #000;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 80px;
  }
}
@media screen and (max-width: 640px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 430px) {
  html {
    font-size: 46px;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 44px;
  }
}
@media screen and (max-width: 393px) {
  html {
    font-size: 41.92px;
  }
}
@media screen and (max-width: 384px) {
  html {
    font-size: 40.96px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 40px;
  }
}
@media screen and (max-width: 360px) {
  html {
    font-size: 38.4px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 34px;
  }
}
.separator {
  height: 0.1rem;
  background: #f8f8f8;
}
header {
  width: 100%;
  height: 1.13rem;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 1;
}
header .header-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 1.13rem;
  padding: 0.28rem 0.2rem 0.25rem;
}
header .header-title .logo {
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid #e3f3f3;
  border-radius: 4px;
  margin-right: 0.2rem;
}
header .header-title .title {
  flex: 1;
  font-size: 0.45rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.9);
  line-height: 0.63rem;
}
header .download-btn {
  padding: 0.08rem 0.25rem;
  height: 0.7rem;
  line-height: 0.53rem;
  text-align: center;
  background: #0c89d6;
  border-radius: 0.1rem;
  font-size: 0.35rem;
  color: #ffffff;
  cursor: pointer;
}
.cover {
  width: 100%;
  background: #fff;
  z-index: 1;
}
.cover #live-video {
  height: 6.25rem;
}
.cover .cover-top {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.25rem 0.2rem;
  overflow: hidden;
}
.cover .cover-top .back-btn {
  /* margin-top: 0.1rem; */
  width: 0.6rem;
  height: 0.6rem;
  cursor: pointer;
  background: url("../../js_css/images/back.png") no-repeat center;
}
.cover .cover-top .cover-title {
  float: left;
  margin-left: 0.2rem;
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
/* 标题在视频下方的样式 s */
.cover .bottom-box {
  padding: 0.4rem;
  padding-top: 0;
}
.cover .bottom-box .bottom-title {
  font-size: 0.43rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 400;
}
/* 标题在视频下方的样式 e */
.comment {
  padding: 0 0.4rem 0.3rem;
}
.comment .comment-tag {
  margin-bottom: 0.4rem;
  font-size: 0.45rem;
  color: rgba(0, 0, 0, 0.9);
  font-weight: bold;
}
.comment .parent-comment li {
  margin-bottom: 0.73rem;
  overflow: hidden;
}
.comment .parent-comment li .user-avatar {
  float: left;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
.comment .parent-comment li .user-avatar img {
  height: 100%;
  border-radius: 50%;
}
.comment .parent-comment li .comment-detail {
  float: left;
  width: calc(100% - 1.2rem);
  margin-left: 0.2rem;
}
.comment .parent-comment li .comment-detail .comment-about {
  overflow: hidden;
}
.comment .parent-comment li .comment-detail .comment-about .user-name {
  float: left;
  font-size: 0.38rem;
  color: rgba(0, 0, 0, 0.6);
}
.comment .parent-comment li .comment-detail .comment-about .likes {
  float: right;
  display: flex;
  justify-content: space-between;
}
.comment .parent-comment li .comment-detail .comment-about .likes span {
  font-size: 0.33rem;
  color: rgba(0, 0, 0, 0.9);
  margin-right: 0.1rem;
}
.comment .parent-comment li .comment-detail .comment-content {
  width: calc(100% - 0.4rem);
  margin-top: 0.2rem;
  margin-bottom: 0.33rem;
  line-height: 0.7rem;
  font-size: 0.4rem;
  color: rgba(0, 0, 0, 0.9);
}
.comment .parent-comment li .comment-detail .comment-content .toggle-btn {
  float: right;
  font-size: 0.4rem;
  color: #0c89d6;
  cursor: pointer;
}
.comment .parent-comment li .comment-detail .comment-reply {
  overflow: hidden;
}
.comment .parent-comment li .comment-detail .comment-reply .timestamp {
  float: left;
  font-size: 0.28rem;
  color: rgba(0, 0, 0, 0.4);
}
.comment .parent-comment li .comment-detail .comment-reply .reply-btn {
  float: left;
  padding: 0.03rem 0.2rem;
  margin-left: 0.1rem;
  background: #eeeeee;
  border-radius: 0.2rem;
  font-size: 0.28rem;
  text-align: center;
}
.comment .parent-comment li .comment-detail .child-comment {
  float: right;
  width: calc(100% - 0.08rem);
  margin-top: 0.33rem;
  padding: 0.3rem;
  background: #f8f8f8;
  border-radius: 0.1rem;
  line-height: 0.7rem;
  font-size: 0.35rem;
  color: rgba(0, 0, 0, 0.9);
}
.comment .parent-comment li .comment-detail .child-comment .user-name {
  color: rgba(0, 0, 0, 0.6);
}
.video-detail {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 4rem;
}
.video-detail .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
}
.video-detail .info p {
  font-size: 0.38rem;
  color: #ffffff;
  line-height: 0.98rem;
}
.video-detail .info .video-author {
  margin-top: 0.35rem;
  font-size: 0.3rem;
}
.video-detail .operation {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
}
.video-detail .operation .operation-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3rem;
  align-items: center;
  cursor: pointer;
}
.video-detail .operation .operation-item img {
  width: 1rem;
  height: 0.8rem;
}
.video-detail .operation .operation-item .item-title {
  font-size: 0.3rem;
  color: #ffffff;
  text-align: center;
}
.tabs .tabs-header {
  display: flex;
  justify-content: space-around;
  border-bottom: 0.01rem solid #e7e7e7;
  font-size: 0.4rem;
}
.tabs .tabs-header .tabs-title {
  position: relative;
  padding: 0.325rem 0;
  color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.tabs .tabs-header .tabs-title_active {
  font-weight: bold;
  color: #0c89d6;
}
.tabs .tabs-header .tabs-title_active:after {
  content: "";
  position: absolute;
  left: calc((100% - 0.325rem) / 2);
  bottom: 0;
  height: 0.05rem;
  width: 30%;
  background-color: #0c89d6;
}
.topic-list {
  margin-top: 0.2rem;
}
.topic-list .item-box {
  display: flex;
  padding: 0.4rem 0;
}
.topic-list .item-box .item-left {
  flex: 1;
}
.topic-list .item-box .item-left .item-title {
  font-size: 0.425rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  display: block;
}
.topic-list .item-box .item-left .item-time {
  height: 0.375rem;
  font-size: 0.275rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  line-height: 0.375rem;
}
.topic-list .item-box .item-left .item-pageviews {
  height: 0.375rem;
  font-size: 0.275rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}
.topic-list .item-box .cover-video {
  position: relative;
}
.topic-list .item-box .cover-video .bg-video {
  padding: 0 0.1rem;
  position: absolute;
  right: 0.1rem;
  bottom: 0.3rem;
  background: #000000;
  border-radius: 2px;
  opacity: 0.39;
  display: flex;
  align-items: center;
}
.topic-list .item-box .cover-video .bg-video .play-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.1rem;
}
.topic-list .item-box .cover-video .bg-video .video-time {
  font-size: 0.275rem;
  font-weight: 400;
  color: #ffffff;
}
.topic-list .item-box .item-img {
  width: calc((100vw - 0.8rem) * 0.333);
  height: calc((100vw - 0.8rem) * 0.333 * 0.667);
  border-radius: 0.1rem;
  margin-left: 0.3rem;
}
/** header固定了一个app下载框之后的元素padding */
.fixed-header {
  padding-top: 2.33rem;
}
main {
  overflow: hidden;
}
main .fixed-container-no-download {
  position: fixed;
  top: 0rem;
  width: 100%;
  background: #fff;
  z-index: 1;
}
main .fixed-container {
  position: fixed;
  top: 1.13rem;
  width: 100%;
  background: #fff;
  z-index: 1;
}
main .fixed-container .cover {
  position: relative;
}
main .fixed-container .cover video {
  display: block;
}
main .fixed-container .cover .cover-top {
  height: 1.1rem;
  position: absolute;
  top: 0.4rem;
  left: 0;
  padding: 0.25rem 0 0.25rem 0.2rem;
  overflow: hidden;
  right: 0.2rem;
}
.cover-top-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}
.cover-title-placeholder {
  position: absolute;
  height: 0.5px;
  width: calc(100vw - 1.2rem);
}
main .fixed-container .cover .cover-top .cover-title {
  /* float: left; */
  margin-left: 0.2rem;
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  /* display: none; */
  position: absolute;
  left: 0;
  transition: opacity 0.2;
}
.cover-title .marquee {
  overflow: hidden;
}
.marquee .marquee-content {
  width: auto;
  white-space: nowrap;
}
.marquee.marquee--active .marquee-content {
  animation: marquee linear infinite;
}
.fade--out {
  opacity: 0;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 50px));
  }

}
main .fixed-container .cover .audience-count {
  position: absolute;
  top: 1.1rem;
  right: 0.25rem;
  width: 1.3rem;
  height: 0.5rem;
  line-height: 0.5rem;
  font-size: 0.3rem;
  color: #FFFFFF;
  text-indent: 0.6rem;
  background: url("../../js_css/images/audience.png") no-repeat 0.15rem center rgba(0,0,0,0.26);
  border-radius: 0.25rem;
}
main .fixed-container .intro {
  height: 2.1rem;
  line-height: 1.1rem;
  padding: 0.3rem 0.4rem;
  overflow: hidden;
  display: none;
}
main .fixed-container .intro .org {
  display: flex;
  float: left;
  align-items: center;
}
main .fixed-container .intro .org .org-avatar {
  width: 1.1rem;
  height: 1.1rem;
}
main .fixed-container .intro .org .org-avatar img {
  border-radius: 50%;
}
main .fixed-container .intro .org .org-info {
  margin-left: 0.2rem;
}
main .fixed-container .intro .org .org-info .org-name {
  font-size: 0.4rem;
  color: rgba(0, 0, 0, 0.9);
}
main .fixed-container .intro .org .org-info .org-intro {
  font-size: 0.3rem;
  color: rgba(0, 0, 0, 0.4);
}
main .fixed-container .intro .follow-btn {
  float: right;
  margin-top: 0.2rem;
  padding: 0.18rem 0.55rem;
  background: rgba(12, 137, 214, 0.08);
  border-radius: 2.5rem;
  font-size: 0.3rem;
  color: #0c89d6;
  text-align: center;
  cursor: pointer;
}
main .fixed-container .book {
  /* height: 4.1rem; */
  padding: 0.4rem 0 0.5rem;
  text-align: center;
}
main .fixed-container .book .book-title {
  margin-bottom: 0.15rem;
  font-size: 0.3rem;
  color: rgba(0, 0, 0, 0.4);
}
main .fixed-container .book .book-title span {
  color: rgba(0, 0, 0, 0.9);
}
main .fixed-container .book .book-time {
  font-size: 0.5rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.9);
}
main .fixed-container .book .book-time span {
  padding: 0 0.1rem;
  font-size: 0.38rem;
  font-weight: 400;
}
main .fixed-container .book .book-live-btn {
  margin: 0.25rem auto 0;
  width: 34%;
  padding: 0.23rem 0.78rem;
  background: #0c89d6;
  font-size: 0.35rem;
  color: #ffffff;
  border-radius: 0.1rem;
  cursor: pointer;
}
main .tabs {
  margin-top: 16.46rem;
}
main .tabs .liveroom {
  font-size: 0.4rem;
  color: rgba(0, 0, 0, 0.9);
  padding: 0.4rem;
}
main .tabs .liveroom span {
  font-weight: bold;
}
main .tabs .liveroom .liveroom-intro {
  overflow: hidden;
  margin-bottom: 0.6rem;
  display: flex;
}
main .tabs .liveroom .liveroom-intro .intro-title {
  float: left;
  width: auto;
  flex-shrink: 0;
  font-weight: bold;
}
main .tabs .liveroom .liveroom-intro .intro-content {
  float: left;
  /* width: 90%; */
  width: 87%;
  flex: 1;
  margin-left: 0.1rem;
  word-break: break-all;
  white-space: pre-wrap;
  /* max-height: 4rem;
  overflow: auto; */
}
main .tabs .liveroom .liveroom-content {
  white-space: pre-wrap;
}
main .tabs .liveroom .liveroom-content li .item-header {
  overflow: hidden;
}
main .tabs .liveroom .liveroom-content li .item-header .user-avatar {
  float: left;
  /* margin-top: 0.05rem; */
  margin-right: 0.2rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}
main .tabs .liveroom .liveroom-content li .item-header .user-avatar img {
  border-radius: 50%;
}
main .tabs .liveroom .liveroom-content li .item-header .user-name {
  float: left;
  font-size: 0.35rem;
  margin-top: 0.1rem;
}
main .tabs .liveroom .liveroom-content li .item-header .publish-time {
  float: right;
  font-size: 0.28rem;
  color: rgba(0, 0, 0, 0.4);
  line-height: 0.7rem;
  font-weight: normal;
}
main .tabs .liveroom .liveroom-content li .item-content {
  margin-left: 0.345rem;
  /* padding: 0.15rem 0 0.2rem 0.5rem; */
  padding: 0.12rem 0 0.6rem 0.5rem;
  border-left: 0.01rem solid #ccc;
}
main .tabs .liveroom .liveroom-content li .item-content .item-text{
  word-break: break-word;
}
main .tabs .liveroom .liveroom-content li .item-content .video-wrap {
  position: relative;
  margin-top: 0.2rem;
  white-space: normal;
}
main .tabs .liveroom .liveroom-content li .item-content .vertical-video {
    width: 5.8rem;
    height: 7.7rem;
}
main .tabs .liveroom .liveroom-content li .item-content .horizontal-video {
    width: 7.7rem;
    height: 4.3rem;
}
main .tabs .liveroom .liveroom-content li .item-content .video-wrap .comment-video {
  object-fit: cover;
  border-radius: 0.1rem;
}
main .tabs .liveroom .liveroom-content li .item-content .video-wrap .play-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .tabs .liveroom .liveroom-content li .item-content .img-list {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
}
main .tabs .liveroom .liveroom-content li .item-content .img-list .landscape {
  width: 7.7rem;
  height: 4.3rem;
}
main .tabs .liveroom .liveroom-content li .item-content .img-list .portrait {
  width: 5.8rem;
  height: 7.7rem;
}
main .tabs .liveroom .liveroom-content li .item-content .img-list.len-4 {
  margin-right: calc((100vw - 1.95rem) / 3);
}
main .tabs .liveroom .liveroom-content li .item-content .img-list .img-box {
  margin-bottom: 0.1rem;
  width: calc((100vw - 1.95rem) / 3);
  height: calc((100vw - 1.95rem) / 3);
  border-radius: 0.1rem;
  margin-right: 0.05rem;
  margin-left: 0.05rem;
}
/* main .tabs .liveroom .liveroom-content li .item-content .img-list .img-box:nth-child(3n) {
  margin-right: 0;
} */
main .tabs .liveroom .liveroom-content li .item-content .img-list img {
  /* margin-bottom: 0.1rem; */
  /* width: calc((100vw - 1.95rem) / 3); */
  /* height: calc((100vw - 1.95rem) / 3); */
  height: calc(82vw * 0.56);
  border-radius: 0.1rem;
  object-fit: cover;
}
main .tabs .liveroom .liveroom-content li .item-content .img-list .img-box img {
  height: 100%;
}
main
  .tabs
  .liveroom
  .liveroom-content
  li
  .item-content
  .img-list
  img:nth-child(2) {
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
main
  .tabs
  .liveroom
  .liveroom-content
  li
  .item-content
  .img-list
  img:nth-child(5) {
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
main
  .tabs
  .liveroom
  .liveroom-content
  li
  .item-content
  .img-list
  img:nth-child(8) {
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
main .tabs .chatroom {
  padding: 0.4rem;
}
main .tabs .k-ring {
  width: 100%;
  height: 13px;
  margin: 0 auto;
  font-size: 16px;
  margin-top: 30px;
  padding-top: 30px;
  text-align: center;
  display: none;
}
main .tabs .chatroom li {
  overflow: hidden;
  margin-bottom: 0.3rem;
}
main .tabs .chatroom li .user-avatar {
  float: left;
  margin-right: 0.18rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}
main .tabs .chatroom li .user-avatar img {
  border-radius: 50%;
}
main .tabs .chatroom li .user-comment {
  float: right;
  margin-top: 0.2rem;
  width: calc(100% - 0.88rem);
  padding: 0.2rem 0.2rem 0.3rem 0.2rem;
  background: #f8f8f8;
  border-radius: 0rem 0.2rem 0.2rem 0.2rem;
  font-size: 0.4rem;
  color: rgba(0, 0, 0, 0.9);
  word-break: break-all;
}
main .tabs .chatroom li .user-comment .user-name {
  margin-bottom: 0.15rem;
  font-size: 0.35rem;
  font-weight: bold;
}
.chatroom-comment {
  position: fixed;
  right: 0.4rem;
  bottom: 1.75rem;
  width: 1.4rem;
  height: 1.4rem;
}
main .tabs .morelive {
  padding: 0.4rem;
  padding-top: 0.2rem;
}
main .tabs .morelive ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .tabs .morelive ul > li {
  margin-bottom: 0.5rem;
  width: calc((100vw - 1.08rem) / 2);
  font-size: 0.38rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.9);
}
main .tabs .morelive ul > li .live-cover {
  position: relative;
  margin-bottom: 0.2rem;
}
main .tabs .morelive ul > li .live-cover img {
  border-radius: 0.1rem;
  height: calc((100vw - 1.08rem) / 2 * 0.56);
}
main .tabs .morelive ul > li .live-cover .live-state-tag {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  padding: 0.08rem 0.13rem;
  background: #ff4d4b;
  border-radius: 0.08rem;
  font-size: 0.28rem;
  color: #fff;
}
main .tabs .morelive ul > li .live-cover .live-state-tag img {
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
}
main .tabs .morelive ul > li .live-cover .live-state-tag_forecast {
  background: #1b80eb;
}
main .tabs .morelive ul > li .live-cover .live-state-tag_review {
  background: #666;
}
main .tabs .morelive ul > li p {
  /* height: 1.72rem; */
  font-size: 0.38rem;
}
main .fix-tabs {
  margin-top: 0;
}
main .tabs-no-header {
  margin-top: 20.56rem;
}
main .tabs-book-status {
  /* margin-top: 10rem !important; */
}
main .tabs-live-status {
  /* margin-top: 12.4rem; */
  margin-top: 10rem;
}
main .liveroom .book-live {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 111;
  width: 100%;
  height: 64px;
  padding: 12px 27px;
  border-top: 1px solid #efefef;
  box-sizing: border-box;
}
main .liveroom .book-live-btn {
  width: 320px;
  height: 44px;
  line-height: 44px;
  background: #0c89d6;
  text-align: center;
  border-radius: 22px;
  font-size: 16px;
  color: #fff;
  margin: 0 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 10px;
  box-sizing: border-box;
}

.media-disclaimers {
  position: relative;
  display: flex;
  /* justify-content: flex-end; */
}
.media-disclaimers .trigger {
  margin-top: -0.45rem;
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  height: 0.55rem;
  background: #eeeeee;
  border-radius: 0.275rem;
  font-size: 0.275rem;
  color: rgba(0, 0, 0, 0.9);
  line-height: 0.55rem;
  margin-bottom: 0.65rem;
  margin-left: calc(10% + 0.1rem);
}
.media-disclaimers .trigger .icon-help {
  margin-left: 0.05rem;
  width: 0.3rem;
  height: 0.3rem;
  background: url("../../js_css/images/help.png") no-repeat center / 100% 100%;
}
.media-disclaimers-pop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.media-disclaimers-pop .mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.media-disclaimers-pop .pop-content {
  position: relative;
  padding: 0 0.6rem 0.6rem;
  width: 7.975rem;
  background: #ffffff;
  border-radius: 0.3rem;
}
.media-disclaimers-pop .title {
  padding: 0.4rem 0 0.3rem;
  height: 1.3rem;
  font-size: 0.45rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
  line-height: 0.625rem;
  text-align: center;
}
.media-disclaimers-pop .content {
  font-size: 0.4rem;
  color: rgba(0, 0, 0, 0.9);
  line-height: 0.6rem;
  max-height: 65vh;
  overflow: auto;
}
.media-disclaimers-pop .btn-areas {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.media-disclaimers-pop .btn {
  width: 2.6rem;
  height: 0.9rem;
  background: #0c89d6;
  border-radius: 0.45rem;
  font-size: 0.3rem;
  color: #fff;
  line-height: 0.9rem;
  text-align: center;
}

