@charset "UTF-8";
:root {
  --body-bg: #f1f1f1;
  --content-bg: #fff;
  --color: #000;
  --color-from: #505661;
  --gray: #858785;
  --gray-time: #7b828e;
  --title-color: #212228;
  --high-color: #ff6262;
  --pc-hover-color: #b81d1d;
  --pc-text-color1: #1b1b1b;
  --pc-text-color2: #252525;
  --size: 18px;
  --small-size: 16px;
  --mini-size: 14px;
  --min-size: 12px;
  --title-size: 24px;
  --pc-normal-size: 20px;
  --pc-size: 24px;
  --padding: 20px;
  --max-width: 768px;
  --pc-width: 1200px;
  --border-radius: 12px;
  --img-brightness: 100%;
  --box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
}

@media (prefers-color-scheme: dark) {
  :root {
    --body-bg: #000;
    --content-bg: #111;
    --color: #bbb;
    --gray-time: #595e65;
    --gray: #777;
    --title-color: #ccc;
    --img-brightness: 60%;
    --box-shadow: 0 4px 10px rgba(255, 255, 255, 0.08);
  }
  .pc-normal-page {
    --pc-text-color1: #ffffff;
  }
  .pc-normal-page .nav, .pc-normal-page .topNav {
    color: #ffffff !important;
  }
}

@font-face {
  font-family: 'en';
  src: url("/common/Bebas-Regular.ttf");
}

.app-download,.livepc .banner {
  background: var(--content-bg) !important;
  border-bottom: 1px solid var(--body-bg) !important;
}

.header {
  display: none;
  width: 100%;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--body-bg);
}

.header .header-ads {
  width: var(--pc-width);
  height: 120px;
  margin: 15px auto 0;
  display: none;
}

.header .header-ads img {
  width: var(--pc-width);
  height: 120px;
  display: block;
}

.header .header-nav {
  width: var(--pc-width);
  margin: 0 auto;
  padding: 15px 0;
}

.header .header-nav img {
  display: block;
  margin-right: 25px;
}

.header .header-nav .channel {
  padding-top: 25px;
  font-size: var(--small-size);
}

.header .header-nav .channel a {
  padding: 0 8px;
}

footer {
  display: none;
  width: 100%;
  background: #383838;
  color: #888888;
  text-align: center;
  padding: 45px 0;
  font-size: var(--mini-size);
}

body {
  padding: 0;
  max-width: var(--max-width);
  min-height: calc(100vh - 60px);
  margin: 0 auto;
  background: #f1f1f1;
  color: #333;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

button, div, a, img, p {
  -webkit-tap-highlight-color: transparent;
  /*-webkit-user-select: none;*/
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

input, textarea, select {
  -webkit-appearance: none;
}

::-webkit-search-cancel-button {
  display: none;
}

img {
  border: 0;
}

.fullWidth {
  width: 100%;
}

.a {
  border: 1px solid #f00;
}

.b {
  background: #efefef;
}

.float {
  float: left;
}

.clear {
  clear: both;
}

.hide {
  display: none;
}

.txtMore {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mouse-link {
  cursor: pointer;
}

.txtCN {
  word-break: normal;
  word-wrap: break-word;
  /* text-align: justify; */
  text-justify: inter-ideograph;
}

.txt2line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.arrow-down {
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #f00;
  font-size: 0px;
  line-height: 0px;
  margin: 0 auto;
}

.flex {
  display: -webkit-flex;
  display: flex;
}

.flex1 {
  -webkit-box-flex: 1.0;
  flex: 1;
}

.flex-center {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rem {
  font-size: calc(100vw / 768 * 100);
}

.rem750 {
  font-size: calc(100vw / 750 * 100);
}

@media screen and (min-width: 768px) {
  .rem {
    font-size: 100px;
  }
}

@media screen and (min-width: 750px) {
  .rem750 {
    font-size: 100px;
  }
}

/* 页面内容放在main里面，60px为顶部广告高度 */
.main {
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
  background: #fff;
}

.p92 {
  width: 100%;
  padding: 0 var(--padding);
}

.w92 {
  width: calc(100% - (var(--padding) * 2));
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--high-color);
}

.link {
  cursor: pointer;
}

.link img {
  transition-duration: .5s;
}

@media screen and (min-width: 768px) {
  .link:hover {
    color: var(--high-color);
  }
  .link:hover img {
    transform: scale(1.1);
    overflow: hidden;
  }
}

.like {
  cursor: pointer;
  font-size: var(--mini-size);
  color: var(--color);
  margin: 30px auto 50px;
  width: fit-content;
  height: 37px;
  line-height: 37px;
  border-radius: 37px;
  border: 1px solid var(--body-bg);
  padding: 0 20px 0 45px;
  justify-content: center;
  align-items: center;
  background: url(/common/like.png) no-repeat 20px 52%/18px auto;
  filter: brightness(var(--img-brightness));
}

.like span {
  font-family: en;
}

.liked {
  background-image: url(/common/liked.png);
}

.comment {
  width: 100%;
  margin: 0 auto;
  color: var(--color);
  font-size: var(--small-size);
  border-top: 0px solid var(--body-bg);
  padding: 0 0 50px;
  background: var(--content-bg);
}

.comment .commentTitle {
  margin-top: 10px;
  color: var(--title-color);
  font-size: var(--size);
  font-weight: bold;
  border-bottom: 1px solid var(--body-bg);
  padding-bottom: 5px;
}

.comment .flex {
  margin-top: 10px;
}

.comment .flex1 {
  padding: 0 0px 10px 0px;
  border-bottom: 1px solid var(--body-bg);
}

.comment .commentUserIcon {
  width: 52px;
}

.comment .commentUserIcon img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
}

.comment .commentName {
  color: var(--gray);
  font-size: var(--mini-size);
}

.comment .commentOpenApp {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
}

.comment .commentOpenApp span {
  border: 1px solid var(--high-color);
  color: var(--high-color);
  padding: 5px 8px;
  border-radius: 16px;
}

.recommend {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0px;
  background: var(--content-bg);
}

.recommend .recommendTitle {
  font-weight: bold;
  padding-bottom: 10px;
  color: var(--title-color);
}

.recommend .flex {
  width: 100%;
  border-top: 1px solid var(--body-bg);
  padding: 20px 0;
}

.recommend .cover {
  width: 118px;
  height: 67px;
  border-radius: calc(var(--border-radius) / 2);
  overflow: hidden;
}

.recommend .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend .flex1 {
  position: relative;
}

.recommend .flex .title {
  font-size: var(--small-size);
  padding-left: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-line-break: auto;
}

.recommend .flex .from {
  font-size: var(--min-size);
  color: var(--gray);
  position: absolute;
  bottom: 0px;
  left: 14px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommend .showType0 {
  height: 70px;
}

.recommend-rank {
  display: none;
  margin-top: 10px;
}

.pc-wrapper {
  position: relative;
  width: var(--pc-width);
  margin: 0 auto;
}

.pc-default-header {
  width: 100%;
  height: 56px;
  background-color: #1b1b1b;
  color: #ffffff;
  font-size: var(--mini-size);
  position: relative;
  z-index: 3;
}

.pc-default-header .wrapper {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.pc-default-header .wrapper .item {
  line-height: 56px;
  z-index: 1;
  cursor: pointer;
}

.pc-default-header .wrapper .item a, .pc-default-header .wrapper .item p {
  position: relative;
  z-index: 2;
}

.pc-default-header .wrapper .item a:hover {
  color: #ffffff;
}

.pc-default-header .wrapper .line {
  width: 1px;
  height: 19px;
  background-color: rgba(255, 255, 255, 0.2);
}

.pc-default-header .wrapper .part_l {
  height: 100%;
  position: relative;
  align-items: center;
  font-size: var(--mini-size);
}

.pc-default-header .wrapper .part_l .item {
  position: relative;
  display: block;
  padding: 0 15px;
}

.pc-default-header .wrapper .part_l .item a, .pc-default-header .wrapper .part_l .item span {
  position: relative;
}

.pc-default-header .wrapper .part_l .item:first-child {
  padding-left: 0;
}

.pc-default-header .wrapper .part_l .selectBox {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  transition: all;
  width: max-content;
}

.pc-default-header .wrapper .part_l .selectBox .mail {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border: 1px solid #ffffff;
  color: #333333;
  font-size: var(--mini-size);
}

.pc-default-header .wrapper .part_l .selectBox .mail:hover {
  background: #f4f4f4;
  border: 1px solid #e7e7e7;
  color: #d93024;
}

.pc-default-header .wrapper .part_l .item:hover .linkName::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.pc-default-header .wrapper .part_r {
  align-items: center;
  height: 100%;
  font-size: var(--size);
}

.pc-default-header .wrapper .part_r .item {
  height: 100%;
  padding: 0;
}

.pc-default-header .wrapper .part_r .item p {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  line-height: 32px;
  padding: 0 15px;
}

.pc-default-header .wrapper .part_r .item.cur {
  color: #ffffff;
  background-color: var(--pc-hover-color);
}

.pc-default-header .wrapper .part_r .item.cur p {
  font-weight: bold;
}

.pc-default-header .wrapper .part_r .topNav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: max-content;
  height: 57px;
  padding-top: 16px;
  font-size: 18px;
  color: #1b1b1b;
  justify-content: flex-end;
}

.pc-default-header .wrapper .part_r .topNav div {
  display: block;
  margin-left: 16px;
  flex-shrink: 0;
  line-height: 41px;
}

.pc-default-header .wrapper .part_r .topNav div:hover {
  font-weight: bold;
}

.pc-navBox {
  position: relative;
  padding-top: 16px;
  min-height: 41px;
}

.pc-navBox .pc-wrapper {
  justify-content: space-between;
  align-items: center;
}

.pc-navBox .pc-wrapper .logo-swiper {
  position: relative;
  width: 220px;
  height: 41px;
  margin: 0;
  display: block;
  overflow: hidden;
}

.pc-navBox .pc-wrapper .logo-swiper .logo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
}

.pc-navBox .pc-wrapper .logo-swiper .logo-slide1 {
  transform: rotateY(0deg);
  animation: flip1 10s 5s infinite;
}

.pc-navBox .pc-wrapper .logo-swiper .logo-slide2 {
  background-position: 0 -41px;
  opacity: 0;
  transform: rotateY(180deg);
  animation: flip2 10s 5s infinite;
}

.pc-navBox .pc-wrapper .logo-swiper .logo-slide3 {
  background-position: bottom left;
}

.pc-navBox .pc-wrapper .nav {
  font-size: var(--pc-normal-size);
  color: var(--pc-text-color1);
  justify-content: flex-end;
  line-height: 30px;
}

.pc-navBox .pc-wrapper .nav div {
  margin-left: 32px;
  cursor: pointer;
}

.pc-navBox .pc-wrapper .nav div:hover {
  font-weight: bold;
}

.pc-footer {
  width: 100%;
  background-color: #ededed;
  padding: 55px 0 35px;
  font-size: var(--min-size);
  color: #313131;
  line-height: 30px;
}

.pc-footer .flex {
  justify-content: center;
  align-items: center;
}

.pc-footer .flex .icon {
  margin-left: 10px;
  margin-right: -10px;
}

.pc-footer .flex .icon img {
  display: block;
}

.pc-footer .flex > a, .pc-footer .flex > div {
  margin: 0 10px;
}

@keyframes flip1 {
  0% {
    transform: rotateY(0deg);
    opacity: 1;
  }
  5% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  50% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  55% {
    transform: rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flip2 {
  0% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  5% {
    transform: rotateY(360deg);
    opacity: 1;
  }
  50% {
    transform: rotateY(360deg);
    opacity: 1;
  }
  55% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(180deg);
    opacity: 0;
  }
}

.colorful-tags {
  font-size: var(--mini-size);
  display: inline-block;
  margin: 0 10px 10px 0;
  color: #fff;
  padding: 5px 10px;
}

.colorful-tags:hover {
  color: #fff;
}
