/* Reset */
/*------------------------------------------------------*/
/*  
    * 默认设计宽度为640, 设置 html font-size:20px;
    * 当前 html font-size = 当前设备宽/16 
*/
html,
body {
  width: 100%;
  height: 100%;
  font-family: 'HanHei SC', 'PingFang SC', 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
body {
  box-sizing: border-box;
}
html,
body,
img,
iframe,
button,
input {
  border: 0;
}
body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
p,
input,
header,
menu,
section,
figure,
figcaption,
article,
blockquote {
  padding: 0;
  margin: 0;
}
textarea,
select,
input,
button {
  font-size: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
em,
i {
  font-style: normal;
  text-align: left;
}
li,
i {
  list-style: none;
}
a,
a:hover {
  text-decoration: none;
}
textarea {
  resize: none;
  overflow: auto;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
i svg {
  display: block;
  width: 100%;
  height: 100%;
}
svg {
  display: inline-block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  font-family: inherit;
  line-height: 0;
}
/* Function */
/*------------------------------------------------------*/
.f-dn {
  display: none !important;
}
.f-cb:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  overflow: hidden;
  content: '.';
}
.f-ib {
  display: inline-block;
}
.f-blk {
  display: block;
}
.f-blkfull {
  display: block;
  width: 100%;
  height: 100%;
}
.f-img {
  display: block;
  width: 100%;
}
/* Position */
.f-fl {
  float: left;
}
.f-fr {
  float: right;
}
.f-pr {
  position: relative;
}
.f-pa {
  position: absolute !important;
}
.f-prafll {
  position: absolute !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.f-fix {
  position: fixed;
}
.f-fixfll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* Align */
/* absolute 自身 左右居中 */
.f-hc {
  position: absolute !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* absolute 自身 上下居中 */
.f-vc {
  position: absolute !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* absolute 自身 绝对居中 */
.f-cc {
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.f-flvc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.f-fbvc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.f-fcc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.f-fvc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
}
.f-flexba {
  flex-base: auto;
}
.f-flex00 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.f-flex01 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.f-flex10 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.f-flex11 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
.f-mgt5 {
  margin-top: 5px;
}
.f-mgt10 {
  margin-top: 10px;
}
.f-mgt15 {
  margin-top: 15px;
}
.f-mgt20 {
  margin-top: 20px;
}
/* Text */
.f-thide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.f-thide2,
.f-thide3,
.f-thide4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.f-thide3 {
  -webkit-line-clamp: 3;
}
.f-thide4 {
  -webkit-line-clamp: 4;
}
.f-brk {
  word-wrap: break-word;
  word-break: break-all;
}
.f-nw {
  white-space: nowrap;
}
.f-tid {
  text-indent: -9999px;
}
.f-tc {
  text-align: center;
}
.f-tl {
  text-align: left;
}
.f-tr {
  text-align: right;
}
/* JS */
.z-dis {
  pointer-events: none;
}
.f-hide,
.j-hide {
  display: none !important;
}
.f-vhide,
.j-vhide {
  visibility: hidden;
}
/* 1px解决文案；*/
.f-bd {
  position: relative;
}
.f-bd *,
.u-txt * {
  position: relative;
  z-index: 1;
}
.f-bd:after,
.u-txt:after {
  position: absolute;
  z-index: 2;
  content: '';
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 200%;
  height: 200%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 0;
  pointer-events: none;
}
.f-bd-top:after {
  border-width: 1px 0 0 0;
}
.f-bd-btm:after {
  border-width: 0 0 1px 0;
}
.f-bd-left:after {
  border-width: 0 0 0 1px;
}
.f-bd-right:after {
  border-width: 0 1px 0 0;
}
.f-bd-full:after {
  border-width: 1px;
}
/* Font */
/*-----------------------------------------------------*/
.f-fw0 {
  font-weight: normal;
}
.f-fw1 {
  font-weight: bold;
}
.f-fs9 {
  font-size: 9px;
}
.f-fs10 {
  font-size: 10px;
}
.f-fs11 {
  font-size: 11px;
}
.f-fs12 {
  font-size: 12px;
}
.f-fs13 {
  font-size: 13px;
}
.f-fs14 {
  font-size: 14px;
}
.f-fs15 {
  font-size: 15px;
}
.f-fs16 {
  font-size: 16px;
}
.f-fs17 {
  font-size: 17px;
}
.f-fs18 {
  font-size: 18px;
}
.f-fs19 {
  font-size: 19px;
}
.f-fs20 {
  font-size: 20px;
}
.s-fcFFF {
  color: #fff;
}
.s-fc000 {
  color: #000;
}
.s-fc333 {
  color: #333;
}
.s-fc666 {
  color: #666;
}
.s-fc888 {
  color: #888;
}
.s-fc999 {
  color: #999;
}
.s-fcAAA {
  color: #aaa;
}
.s-fcBBB {
  color: #bbb;
}
/* light gray */
.s-fcCCC {
  color: #ccc;
}
/* placeholder in textarea and input */
.s-fcLink,
a {
  color: #507daf;
}
/* 链接色 */
.s-fcThe {
  color: #d33a31;
}
/* app主题色 */
.s-fcVip {
  color: #fe672e;
}
/* app 会员色 */
.s-fcIncome {
  color: #42a455;
}
/* 收入 绿色 */
.s-fcInvite {
  color: #fae607;
}
/* 邀请 yellow */
/* Background Color */
.s-bgc000 {
  background-color: #000;
}
.s-bgcFFF {
  background-color: #fff;
}
.s-bgc0 {
  background-color: #f6f7f8;
}
/* 有白块的背景色 */
.s-bgc1 {
  background-color: #fbfcfd;
}
/* app背景色 & 没有白块的背景色 */
.s-bgc2 {
  background-color: #f8faff;
}
/* 邀请页 */
/* Grid */
.g-hasbtmlay {
  padding-bottom: 54px;
  box-sizing: border-box;
}
/* Grid for Web */
@media screen and (min-width: 600px) {
  .g-web {
    width: 600px;
    margin: 0 auto;
  }
  .g-web-sep {
    width: 100%;
  }
  .g-web-sep .g-main {
    width: 600px;
    margin: 0 auto;
  }
  .g-main-cnt {
    height: auto;
  }
}
/* @Media & for UI fix */
/*-----------------------------------------------------*/
/* 1px解决方案 3倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .f-bd:after,
  .u-txt:after {
    width: 300%;
    height: 300%;
    -webkit-transform: scale(0.333333);
    transform: scale(0.333333);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
/* 适配iphoneX */
.iphonexfull {
  padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.iphonexlr {
  padding-left: constant(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.iphonexbm {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.iphonexmgfull {
  margin: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  margin: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.iphonexmglf {
  margin-left: constant(safe-area-inset-left);
  margin-right: constant(safe-area-inset-right);
  margin-left: env(safe-area-inset-left);
  margin-right: env(safe-area-inset-right);
}
.iphonexmgbm {
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
}

/* 颜色值 */
.m-tabarea {
  margin: 0 auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
}
.m-tabarea .m-tabct {
  display: block;
  width: 100%;
  height: 100%;
}
.m-tabarea .m-tabct .tabctitem {
  width: 100%;
  height: 100%;
}
.m-tabarea .utab-none {
  display: none;
}
.mrc-tab,
.u-tab {
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  background: #fff;
}
.mrc-tab .tabtitle,
.u-tab .tabtitle {
  -webkit-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  display: block;
  width: 30%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
.mrc-tab .tabtxt,
.u-tab .tabtxt {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: 100%;
  padding: 0 5px;
  box-sizing: border-box;
  color: #333;
  font-size: 15px;
  line-height: 40px;
}
.mrc-tab .tabtxt .tt,
.u-tab .tabtxt .tt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mrc-tab .tabtxt .subtt,
.u-tab .tabtxt .subtt {
  margin-left: 5px;
  color: #999;
  font-size: 13px;
  font-style: normal;
  vertical-align: baseline;
}
.mrc-tab .tabtxt .subtt.z-pre,
.u-tab .tabtxt .subtt.z-pre {
  margin-left: 0;
  margin-right: 5px;
}
.mrc-tab .z-selected .tabtxt,
.u-tab .z-selected .tabtxt {
  color: #DD001B;
}
.mrc-tab .z-selected .tabtxt:after,
.u-tab .z-selected .tabtxt:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  height: 4px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  background: #DD001B;
}
/* for dpr >= 3倍屏 andord1080， iphone6+ */
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .mrc-tab .tabtitle.z-selected .tabborder,
  .u-tab .tabtitle.z-selected .tabborder {
    height: 6px;
    bottom: -2px;
    -webkit-transform: scaleY(0.333333);
    transform: scaleY(0.333333);
  }
}

/* 中间显示toast */
.m-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 70px;
  min-height: 30px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  /* 动画设置 */
}
.m-toast.toast-entering {
  opacity: 0;
}
.m-toast.toast-entered {
  opacity: 1;
}
.m-toast.toast-exiting {
  opacity: 1;
}
.m-toast.toast-exited {
  opacity: 0;
}
.m-toast .text {
  line-height: 30px;
  font-size: 15px;
  color: #fff;
}
.m-toast-center {
  margin-top: -100px;
  width: 180px;
  min-height: 116px;
  border-radius: 6px;
}
.m-toast-center .icn {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 25px 0 6px;
}
.m-toast-center .text {
  line-height: 20px;
  padding: 0 15px 10px;
}
/* 页面顶部显示toast */
.m-toast-top {
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 70px;
  height: 30px;
  padding: 0 15px;
  line-height: 30px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.6);
}
.m-toast-top .text {
  line-height: 30px;
}
.m-toast-top .icn {
  display: none;
  margin: 0;
}
.m-toast-top.toast-entering {
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  opacity: 0.5;
}
.m-toast-top.toast-entered {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}
.m-toast-top.toast-exiting {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 0.5;
}
.m-toast-top.toast-exited {
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  opacity: 0.01;
}
.m-toast-loading {
  margin-top: -100px;
  width: 180px;
  min-height: 116px;
  border-radius: 6px;
}
.m-toast-loading .icn {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 27px 0 6px;
  background: url("http://p3.music.126.net/C9tJEnwLhYm4dvTdsukD0g==/19106213556354168.jpg") no-repeat;
  background-size: 30px 240px;
  background-position: 0 0;
  -webkit-animation: toastload 0.72s infinite step-start;
  animation: toastload 0.72s infinite step-start;
}
.m-toast-loading .text {
  line-height: 20px;
  padding: 0 15px 10px;
}
@keyframes toastload {
  0% {
    background-position-y: 0;
  }
  14.28% {
    background-position-y: -30px;
  }
  28.56% {
    background-position-y: -60px;
  }
  42.84% {
    background-position-y: -90px;
  }
  57.12% {
    background-position-y: -120px;
  }
  71.4% {
    background-position-y: -150px;
  }
  85.68% {
    background-position-y: -180px;
  }
  100% {
    background-position-y: -210px;
  }
}
@-webkit-keyframes toastload {
  0% {
    background-position-y: 0;
  }
  14.28% {
    background-position-y: -30px;
  }
  28.56% {
    background-position-y: -60px;
  }
  42.84% {
    background-position-y: -90px;
  }
  57.12% {
    background-position-y: -120px;
  }
  71.4% {
    background-position-y: -150px;
  }
  85.68% {
    background-position-y: -180px;
  }
  100% {
    background-position-y: -210px;
  }
}

.mrc-modal {
  position: absolute;
  z-index: 1000;
  display: none;
}
.mrc-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
.mrc-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.mrc-modal-wrapper.mrc-modal-center {
  -webkit-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
          align-items: center;
}
.mrc-modal-wrapper.mrc-modal-center .mrc-modal-container {
  position: relative;
}
.mrc-modal-container {
  position: absolute;
  background: #fff;
}
.mrc-modal-container .mrc-header {
  position: relative;
}
.mrc-modal-show {
  display: block;
}
.mrc-modal-enter,
.mrc-modal-appear {
  opacity: 0;
  visibility: hidden;
}
.mrc-modal-enter-active,
.mrc-modal-appear-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
.mrc-modal-enter-done,
.mrc-modal-exit {
  opacity: 1;
  visibility: visible;
}
.mrc-modal-exit-active {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
.mrc-modal-parent-overflow-hidden {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.m-comments .cmt_title {
  margin: 0;
  padding: 4px 10px;
  color: #666;
  font-size: 12px;
  font-weight: normal;
  background: rgba(0, 0, 0, 0.05);
}
.m-comments {
  word-wrap: break-word;
  word-break: break-all;
}
.m-comments a {
  color: #507daf;
  text-decoration: none;
}
.m-comments .cmt_item {
  padding-top: 10px;
  width: 100%;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.m-comments .cmt_item .cmt_head {
  margin: 0 10px;
  -webkit-flex: none;
  -webkit-box-flex: 0;
  flex: none;
}
.m-comments .cmt_item .cmt_head img {
  display: block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.m-comments .cmt_item .cmt_head + .cmt_wrap {
  padding-left: 0;
}
.m-comments .cmt_item .cmt_wrap {
  padding-right: 10px;
  padding-bottom: 11px;
  padding-left: 10px;
  -webkit-flex: auto;
  -webkit-box-flex: 1;
  flex: auto;
  width: 0;
}
.m-comments .cmt_item .cmt_wrap .cmt_header {
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.m-comments .cmt_item .cmt_wrap .cmt_meta {
  -webkit-flex: auto;
  -webkit-box-flex: 1;
  flex: auto;
  width: 0;
  /* 移除 inline 子元素的异常空白文本行距，
                   子元素必须重新指定 font-size */
  font-size: 0;
}
.m-comments .cmt_item .cmt_wrap .cmt_user {
  /* 使用 inline-flex 处理 white-space 失效 */
  max-width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.m-comments .cmt_item .cmt_wrap .cmt_user a {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  flex: auto;
}
.m-comments .cmt_item .cmt_wrap .cmt_user .vip {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: inline-block;
  margin: 0 5px;
}
.m-comments .cmt_item .cmt_wrap .cmt_user .vip-associator {
  width: 21px;
  height: 11px;
  background: url('//p1.music.126.net/OeOahPin96CFyHmEnH2grA==/109951163446555771.png') 0 0 / contain no-repeat;
}
.m-comments .cmt_item .cmt_wrap .cmt_user .vip-package {
  width: 11px;
  height: 11px;
  background: url('//p1.music.126.net/uS0DQ8CxhOhmyiom4yLlJw==/109951163446550944.png') 0 0 / contain no-repeat;
}
.m-comments .cmt_item .cmt_wrap .cmt_time {
  font-size: 9px;
  color: #999999;
}
.m-comments .cmt_item .cmt_wrap .cmt_like {
  width: 65px;
  height: 22px;
  line-height: 22px;
  font-size: 11px;
  color: #999999;
  -webkit-flex: none;
  -webkit-box-flex: 0;
  flex: none;
  text-align: right;
}
.m-comments .cmt_item .cmt_wrap .cmt_like .cmt_likearea {
  display: inline-block;
  min-width: 30px;
  padding-left: 5px;
}
.m-comments .cmt_item .cmt_wrap .cmt_like .cmt_count {
  vertical-align: middle;
}
.m-comments .cmt_item .cmt_wrap .cmt_like .cmt_likeicn {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  line-height: 0;
  vertical-align: middle;
  cursor: pointer;
}
.m-comments .cmt_item .cmt_wrap .cmt_like.active {
  color: #d33a32;
}
.m-comments .cmt_item .cmt_wrap .cmt_content {
  color: #333;
  font-size: 15px;
  line-height: 22px;
  margin-top: 5px;
}
.m-comments .cmt_item .cmt_wrap .cmt_replied {
  margin: 5px 0;
  padding: 10px;
  color: #888;
  font-size: 14px;
  line-height: 21px;
}
.m-comments .cmt_item .cmt_wrap .cmt_replied .cmt_replied_user {
  vertical-align: middle;
}
.m-comments .cmt_item .cmt_wrap .cmt_replied .cmt_emoji {
  margin-top: -2px;
}
.m-comments .cmt_item .cmt_wrap .cmt_emoji,
.m-comments .cmt_item .cmt_wrap .cmt_text,
.m-comments .cmt_item .cmt_wrap .cmt_express_noparse {
  vertical-align: middle;
}
.m-comments .cmt_item:last-child .cmt_wrap:after {
  border-bottom: none;
}
.m-comments .cmt_holder {
  padding: 50px 10px;
  text-align: center;
  font-size: 12px;
  color: #999999;
}
.m-comments .cmt_express {
  width: 70px;
  height: 70px;
  margin-top: 3px;
}
.m-comments .cmt_express_img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.m-comments-black .cmt_title {
  color: #ccc;
}
.m-comments-black .cmt_item .cmt_wrap:after {
  border-color: rgba(255, 255, 255, 0.1);
}
.m-comments-black .cmt_item .cmt_wrap .cmt_header .cmt_user a {
  color: rgba(255, 255, 255, 0.7);
}
.m-comments-black .cmt_item .cmt_wrap .cmt_header .cmt_time {
  color: rgba(255, 255, 255, 0.3);
}
.m-comments-black .cmt_item .cmt_wrap .cmt_content {
  color: #fff;
}
.m-comments-black .cmt_item .cmt_wrap .cmt_replied {
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}
.m-comments-black .cmt_item .cmt_wrap .cmt_replied:after {
  border-color: rgba(255, 255, 255, 0.1);
}
/* avatar */
.m-comments .cmt_head > a {
  position: relative;
  display: block;
}
.m-comments .cmt_head > a .ava-icon {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background-image: url("//p4.music.126.net/l0FkWHfIqLav4I1oYHIyVQ==/19013854579518977.jpg");
  background-repeat: no-repeat;
  background-size: 75px auto;
}
.m-comments .cmt_head > a .ava-icon.ava-icon-yyr {
  background-position: -20px 0;
}
.m-comments .cmt_head > a .ava-icon.ava-icon-v {
  background-position: 0 0;
}
.m-comments .cmt_head > a .ava-icon.ava-icon-daren {
  background-position: -40px 0;
}
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .m-comments .cmt_head .ava-icon {
    background-image: url("//p4.music.126.net/Zcn0QRV2Aa7vBLJsqbs6jg==/18908301463251733.jpg");
    background-size: 70px auto;
  }
  .m-comments .cmt_item .cmt_wrap .cmt_user .vip-associator {
    background: url('//p1.music.126.net/hLQ07HbOaNHjc4CuEklRew==/109951163446556730.png') 0 0 / contain no-repeat;
  }
  .m-comments .cmt_item .cmt_wrap .cmt_user .vip-package {
    background: url('//p1.music.126.net/9-akeoJ6i9PvsRGoBqfWcw==/109951163446558153.png') 0 0 / contain no-repeat;
  }
}

.mrc-confirm-modal {
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  max-width: 270px;
  height: auto;
  overflow: hidden;
  background-color: #F5F5F5;
  border-radius: 8px;
}
.mrc-confirm-title {
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 15px 22px 0;
}
.mrc-confirm-content {
  -webkit-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0 22px;
  margin: 5px 0 0 0;
  font-size: 14px;
  line-height: 1.2;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  overflow: hidden;
  text-align: justify;
}
.mrc-confirm-footer {
  position: relative;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  margin: 15px 0 0 0;
  height: 44px;
  min-height: 44px;
  line-height: 44px;
  text-align: center;
  overflow: hidden;
}
.mrc-confirm-footer:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  height: 1px;
  background-color: #dbdbdb;
}
.mrc-confirm-button {
  position: relative;
  display: block;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  width: 1%;
  color: #0076FF;
  font-size: 17px;
  font-weight: normal;
  overflow: hidden;
  cursor: pointer;
}
.mrc-confirm-button:last-child:after {
  display: none;
}
.mrc-confirm-button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 200%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  background-color: #dbdbdb;
}
.mrc-confirm-ok {
  color: #0076FF;
  font-weight: normal;
}
.mrc-confirm-cancel {
  color: #0076FF;
  font-weight: normal;
}
.mrc-confirm-confirm {
  color: #0076FF;
  font-weight: normal;
}
.mrc-confirm-scale-enter,
.mrc-confirm-scale-appear {
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  visibility: hidden;
}
.mrc-confirm-scale-enter-active,
.mrc-confirm-scale-appear-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
.mrc-confirm-scale-enter-done,
.mrc-confirm-scale-exit {
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}
.mrc-confirm-scale-exit-active {
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  visibility: hidden;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .u-dialog-footer:after {
    width: 300%;
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
  }
  .u-dialog-button:after {
    height: 300%;
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
  }
}

