@charset "UTF-8";

.returnTop {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.returnTop.pinpoint {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.returnTop::after {
  position: absolute;
  font-family: "unicons";
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #595561;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.returnTop:hover::after {
  opacity: 0;
}

.returnTop::before {
  position: absolute;
  font-family: "unicons";
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, #0091fe, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.returnTop:hover::before {
  opacity: 1;
}

.returnTop svg path {
  fill: none;
}

.returnTop svg.progress-circle path {
  stroke: #0091fe;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

body.light .returnTop {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

body.light .returnTop::after {
  color: #1f2029;
}

body.light .returnTop svg.progress-circle path {
  stroke: #1f2029;
}

/* 全局样式修改 */
html,
body,
div,
span,
iframe,
map,
font,
img,
a img,
samp,
strong,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
b,
p,
blockquote,
a,
address,
code,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tr,
td,
th {
  padding: 0;
  margin: 0;
  border: 0;
  font-weight: normal;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

i {
  font-style: normal;
}

a {
  text-decoration: none;
  color: initial;
  color: #fefeff;
}

a:focus {
  outline: none;
}

a.hidefocus {
  outline: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input[type="text"],
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  /*去除iPhone input默认样式}*/
}

input {
  outline: none;
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

body {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: 12px;
  background: #21232f;
  color: #fefeff;
}

.clear {
  clear: both;
}

div,
ul,
li,
input {
  box-sizing: border-box;
}

em,
i,
strong {
  font-style: normal;
}

::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background: #828282;
}

::-webkit-scrollbar-track {
  border-radius: 1em;
  background-color: rgba(46, 52, 68, 0.8);
}

.w {
  width: 1024px;
  margin: 0 auto;
}

figure {
  margin: 0;
}

@media screen and (max-width: 1000px) {
  .w {
    width: 100%;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

/* 头部 底部 */
.header {
  position: relative;
  width: 100%;
  background-color: #212121;
  padding: 15px 0;
  box-sizing: border-box;
}

.header .striking {
  height: fit-content;
  overflow: hidden;
  display: flex;
  gap: 35px;
}

.header .striking .symbol {
  width: fit-content;
  height: fit-content;
}

.header .striking .symbol a {
  display: block;
  height: 40px;
}

.header .striking .symbol a img {
  height: 100%;
  width: fit-content;
}

.header .striking .masterTitle {
  flex: 1;
  overflow-x: auto;
}

.header .striking .masterTitle ul {
  width: fit-content;
  height: fit-content;
  display: flex;
  padding: 0 5px;
  gap: 20px;
}

.header .striking .masterTitle ul li {
  position: relative;
  z-index: 2;
  width: fit-content;
  height: fit-content;
  overflow: hidden;
  border-radius: 3px;
  transform: skewX(-15deg);
}

.header .striking .masterTitle ul li a {
  display: block;
  padding: 10px 20px;
  transform: skewX(15deg);
}

.header .striking .masterTitle ul li a span {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.header .striking .masterTitle ul li::before {
  width: 100%;
  height: 200%;
  position: absolute;
  content: "";
  background-color: #0091fe;
  border-radius: 50%;
  left: -100%;
  top: 0;
  transition-duration: 0.3s;
  z-index: -1;
}

.header .striking .masterTitle ul li.active::before,
.header .striking .masterTitle ul li:hover::before {
  transition-duration: 0.3s;
  transform: translate(100%, 0%);
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0.2rem 0.13333rem;
  }

  .header .striking {
    gap: 0.46667rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.26667rem;
    box-sizing: border-box;
  }

  .header .striking .symbol {
    width: fit-content;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    transform: translateX(40%);
  }

  .header .striking .symbol a {
    height: 0.53333rem;
  }

  .header .striking .masterTitle {
    display: none;
  }

  .header .striking .more {
    width: fit-content;
  }

  .header .striking .more .hamburger {
    cursor: pointer;
    width: 22px;
  }

  .header .striking .more .hamburger svg {
    height: 0.69333rem;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header .striking .more .hamburger .line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header .striking .more .hamburger .line-top-bottom {
    stroke-dasharray: 12 63;
  }

  .header .striking .more .hamburger.active svg {
    transform: rotate(-45deg);
  }

  .header .striking .more .hamburger.active svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
}

.scenes {
  display: none;
  position: absolute;
  top: 0.93333rem;
  left: 0;
  background: #212121;
  height: fit-content;
  width: 100%;
  z-index: 99;
  padding: 0.26667rem;
  padding-bottom: 1.06667rem;
  box-sizing: border-box;
}

.scenes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.26667rem;
  padding: 0 0.33333rem;
  box-sizing: border-box;
}

.scenes ul li {
  white-space: nowrap;
  user-select: none;
  font-size: 0.30667rem;
}

.scenes ul li .router-link-active {
  color: #549fda;
}

.scenes .clone {
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translate(-50%) rotate(180deg);
  font-size: 0.56rem;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .scenes {
    display: none !important;
  }
}

.footerBar {
  width: 100%;
  height: fit-content;
  padding: 50px 0;
  background: #212121;
}

@media screen and (max-width: 768px) {
  .footerBar {
    padding: 0.66667rem 0.13333rem;
    box-sizing: border-box;
  }
}

.footerBar .provide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
}

.footerBar .provide .provider {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footerBar .provide .provider .titlebar span {
  font-size: 14px;
  font-weight: bold;
  color: #fefeff;
}

.footerBar .provide .provider ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footerBar .provide .provider ol li a {
  color: #fefeff;
}

.footerBar .follow {
  width: 100%;
}

.footerBar .follow p {
  color: #fefeff;
  text-align: center;
  line-height: 24px;
}

.footerBar .follow p a {
  color: #fefeff;
}

@media screen and (max-width: 768px) {
  .footerBar .provide {
    grid-template-columns: auto;
    gap: 0.26667rem;
    margin-bottom: 0.4rem;
  }

  .footerBar .provide .provider {
    gap: 0.26667rem;
  }

  .footerBar .provide .provider .titleHead strong {
    font-size: 0.32rem;
  }

  .footerBar .provide .provider ol {
    gap: 0.13333rem;
  }

  .footerBar .provide .provider ol li a {
    font-size: 0.29333rem;
  }

  .footerBar .follow p {
    line-height: 0.45333rem;
    font-size: 0.29333rem;
  }
}

/* 复用 */
.harvest {
  display: flex;
  justify-content: space-between;
}

.harvest .hotPayload,
.harvest .fromPayload {
  display: flex;
  gap: 5px;
  align-items: center;
}

.harvest .hotPayload img,
.harvest .fromPayload img {
  height: 20px;
}

.harvest .hotPayload span,
.harvest .hotPayload time,
.harvest .fromPayload span,
.harvest .fromPayload time {
  font-size: 14px;
}

@media screen and (max-width: 768px) {

  .harvest .hotPayload,
  .harvest .fromPayload {
    gap: 0.06667rem;
  }

  .harvest .hotPayload img,
  .harvest .fromPayload img {
    height: 0.33333rem;
  }

  .harvest .hotPayload span,
  .harvest .hotPayload time,
  .harvest .fromPayload span,
  .harvest .fromPayload time {
    font-size: 0.29333rem;
  }
}

.exterior {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  display: flex;
  gap: 20px;
}

.exterior .priority {
  flex: 1;
  width: 0;
}

.exterior .circulate {
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exterior .circulate .segment {
  width: 100%;
  width: 100%;
  height: fit-content;
  padding: 15px;
  box-sizing: border-box;
  background: #2e3444;
}

@media screen and (max-width: 768px) {
  .exterior .circulate .segment {
    padding: 0.2rem;
  }
}

.exterior .circulate .segment .motto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.exterior .circulate .segment .motto .slogan {
  display: flex;
  align-items: center;
  gap: 5px;
}

.exterior .circulate .segment .motto .slogan img {
  width: 20px;
}

.exterior .circulate .segment .motto .slogan strong {
  font-size: 16px;
  font-weight: bold;
}

.exterior .circulate .segment .motto .extra a {
  display: flex;
  align-items: center;
}

.exterior .circulate .segment .motto .extra a .moreInfo {
  font-weight: bold;
}

.exterior .circulate .segment .motto .extra a .iconfont {
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .exterior .circulate .segment .motto {
    margin-bottom: 0.2rem;
  }

  .exterior .circulate .segment .motto .slogan {
    gap: 0.06667rem;
  }

  .exterior .circulate .segment .motto .slogan img {
    width: 0.33333rem;
  }

  .exterior .circulate .segment .motto .slogan strong {
    font-size: 0.34667rem;
  }

  .exterior .circulate .segment .motto .extra .moreInfo {
    font-size: 0.29333rem;
  }

  .exterior .circulate .segment .motto .extra .iconfont {
    font-size: 0.16rem;
  }
}

.exterior .circulate .segment .latest {
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.exterior .circulate .segment .latest ul {
  display: grid;
  grid-template-columns: auto;
  gap: 10px;
}

.exterior .circulate .segment .latest ul li {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}

.exterior .circulate .segment .latest ul li a {
  width: 100%;
  display: block;
}

.exterior .circulate .segment .latest ul li a .diagram {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.exterior .circulate .segment .latest ul li a .diagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exterior .circulate .segment .latest ul li a .diagram p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 5px;
  background: rgba(46, 52, 68, 0.5);
}

.exterior .circulate .segment .latest ul li a .diagram .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
}

.exterior .circulate .segment .latest ul li a .diagram .play img {
  width: 100%;
  height: 100%;
}

.exterior .circulate .segment .latest ul li a .diagram time {
  position: absolute;
  top: 5px;
  left: 5px;
  font-weight: bold;
}

.exterior .circulate .segment .latest ul li a .diagram time.minute {
  top: unset;
  left: unset;
  right: 5px;
  bottom: 30px;
}

@media screen and (max-width: 768px) {
  .exterior .circulate .segment .latest ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.13333rem;
  }

  .exterior .circulate .segment .latest ul li {
    border-radius: 0.04rem;
  }

  .exterior .circulate .segment .latest ul li a .diagram {
    height: 2.66667rem;
  }

  .exterior .circulate .segment .latest ul li a .diagram p {
    font-size: 0.29333rem;
    padding: 0.06667rem;
  }

  .exterior .circulate .segment .latest ul li a .diagram .play {
    width: 0.93333rem;
    height: 0.93333rem;
  }

  .exterior .circulate .segment .latest ul li a .diagram time {
    font-size: 0.32rem;
    top: 0.06667rem;
    left: 0.06667rem;
  }

  .exterior .circulate .segment .latest ul li a .diagram time.minute {
    right: 0.06667rem;
    bottom: 0.4rem;
  }
}

.exterior .circulate .segment .essentials {
  width: 100%;
  overflow: hidden;
}

.exterior .circulate .segment .essentials ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.exterior .circulate .segment .essentials ol li {
  white-space: nowrap;
}

.exterior .circulate .segment .essentials ol li a {
  display: flex;
  gap: 10px;
}

.exterior .circulate .segment .essentials ol li a p {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.exterior .circulate .segment .essentials ol li a p,
.exterior .circulate .segment .essentials ol li a time {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .exterior .circulate .segment .essentials ol {
    gap: 0.2rem;
  }

  .exterior .circulate .segment .essentials ol li a {
    gap: 0.13333rem;
  }

  .exterior .circulate .segment .essentials ol li a p,
  .exterior .circulate .segment .essentials ol li a time {
    font-size: 0.29333rem;
  }
}

@media screen and (max-width: 768px) {
  .exterior {
    flex-direction: column;
  }

  .exterior .priority {
    width: 100%;
  }

  .exterior .circulate {
    width: 100%;
    gap: 0.26667rem;
  }
}

.feature {
  width: 100%;
  height: fit-content;
}

.feature ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature ul li {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  background: #2e3444;
}

.feature ul li a {
  display: block;
  width: 100%;
  height: fit-content;
}

.feature ul li a .tvCover {
  position: relative;
  width: 100%;
  height: 168px;
  overflow: hidden;
}

.feature ul li a .tvCover .opening {
  width: 100%;
  height: 100%;
}

.feature ul li a .tvCover .playing {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.feature ul li a .narrate {
  width: 100%;
  height: 125px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature ul li a .narrate .caption {
  width: 100%;
}

.feature ul li a .narrate .caption p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.feature ul li:hover {
  background: #0091fe;
}

@media screen and (max-width: 768px) {
  .feature ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.26667rem;
  }

  .feature ul li a .tvCover {
    height: 2.4rem;
  }

  .feature ul li a .tvCover .playing {
    width: 1.06667rem;
    height: 1.06667rem;
  }

  .feature ul li a .narrate {
    height: 1.8rem;
    padding: 0.13333rem;
  }

  .feature ul li a .narrate .caption p {
    font-size: 0.32rem;
  }
}

.feature.slender ul {
  grid-template-columns: repeat(2, 1fr);
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  margin-top: 20px;
}

.page .pagination {
  display: flex;
  gap: 10px;
  user-select: none;
}

.page .pagination li {
  width: auto;
  height: auto;
  border-radius: 5px;
  padding: 3px 10px;
  border: 2px solid #3f4759;
}

.page .pagination li:hover {
  background: #0091fe;
}

.page .pagination li:hover span {
  color: #fefeff;
}

.page .pagination li a {
  display: block;
}

.page .pagination li span,
.page .pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fefeff;
}

.page .pagination .active {
  background: #0091fe;
}

.page .pagination .active span {
  color: #fefeff;
}

.page .pagination .disabled {
  cursor: pointer;
  user-select: none;
}

.page .pagination .disabled span {
  color: #cdcdcd;
  white-space: nowrap;
}

.page .pagination .disabled span.iconfont {
  font-size: 10px;
}

.page .pagination .omit {
  cursor: default;
  width: auto;
  border: none;
  background: none;
}

@media screen and (max-width: 768px) {
  .page {
    padding: 0.26667rem;
    margin-top: 0.26667rem;
  }

  .page .pagination {
    gap: 0.13333rem;
  }

  .page .pagination li {
    padding: 0.06667rem 0.13333rem;
    border-radius: 0.06667rem;
    border-width: 0.04rem;
  }

  .page .pagination li.Jump {
    display: none;
  }

  .page .pagination li span,
  .page .pagination li a {
    font-size: 0.34667rem;
  }
}

.linkMenu {
  position: relative;
  width: 100%;
  height: fit-content;
  margin-bottom: 20px;
}

.linkMenu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #3f4759;
  z-index: -1;
}

.linkMenu ul {
  width: 100%;
  height: fit-content;
  overflow: auto;
  display: flex;
  gap: 15px;
}

.linkMenu ul li {
  width: fit-content;
  height: fit-content;
  border-bottom: 3px solid transparent;
}

.linkMenu ul li a {
  display: block;
  padding: 10px;
  white-space: nowrap;
}

.linkMenu ul li.active,
.linkMenu ul li:hover {
  border-bottom-color: #0091fe;
}

.linkMenu ul li.active a,
.linkMenu ul li:hover a {
  color: #0091fe;
}

@media screen and (max-width: 768px) {
  .linkMenu {
    margin-bottom: 0.26667rem;
  }

  .linkMenu ul {
    gap: 0.2rem;
  }

  .linkMenu ul li a {
    padding: 0.13333rem;
    font-size: 0.32rem;
  }
}

.spotNews {
  width: 100%;
}

.spotNews ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spotNews ul li {
  width: 100%;
  height: 255px;
  background: #2e3444;
}

.spotNews ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
  padding: 15px;
  box-sizing: border-box;
  overflow: hidden;
}

.spotNews ul li a .newsHead {
  width: 320px;
  height: 100%;
}

.spotNews ul li a .newsHead img {
  width: 100%;
  height: 100%;
}

.spotNews ul li a .specifics {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spotNews ul li a .specifics .literal {
  width: 100%;
}

.spotNews ul li a .specifics .literal .oriented {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.spotNews ul li a .specifics .literal p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.spotNews ul li:hover {
  background: #0091fe;
}

@media screen and (max-width: 768px) {
  .spotNews ul {
    gap: 0.26667rem;
  }

  .spotNews ul li {
    height: 3.4rem;
  }

  .spotNews ul li a {
    gap: 0.26667rem;
    padding: 0.2rem;
  }

  .spotNews ul li a .newsHead {
    width: 4.26667rem;
  }

  .spotNews ul li a .specifics .literal .oriented {
    margin-bottom: 0.13333rem;
    font-size: 0.32rem;
  }

  .spotNews ul li a .specifics .literal p {
    font-size: 0.29333rem;
  }
}

.housing {
  position: relative;
  z-index: 2;
  width: 100%;
}

.housing.homeSole {
  max-height: 820px;
  overflow-y: auto;
}

.housing ol {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.housing ol li {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  padding: 15px;
}

.housing ol li .troop {
  width: 100%;
  overflow: hidden;
}

.housing ol li .troop a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.housing ol li .troop a img {
  width: 30px;
}

.housing ol li .troop a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
}

.housing ol li .hostTeam {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.housing ol li .hostTeam .world {
  text-align: center;
  font-weight: bold;
}

.housing ol li .result {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  align-items: center;
}

.housing ol li .result .score {
  font-weight: bold;
  font-size: 18px;
}

.housing ol li .result .score:first-child {
  text-align: right;
}

.housing ol li .result .report {
  place-self: center;
}

.housing ol li .result .report .finish {
  padding: 8px 12px;
  background: #017a8d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.housing ol li .result .report .finish span {
  font-weight: bold;
}

.housing ol li .result .report .finish span.iconfont {
  font-weight: unset;
  font-size: 20px;
}

.housing ol li .result .report .start {
  width: 35px;
  height: 35px;
  /* Animations */
}

.housing ol li .result .report .start .pl__ring {
  animation: ringA 2s linear infinite;
}

.housing ol li .result .report .start .pl__ring--a {
  stroke: #f42f25;
}

.housing ol li .result .report .start .pl__ring--b {
  animation-name: ringB;
  stroke: #f49725;
}

.housing ol li .result .report .start .pl__ring--c {
  animation-name: ringC;
  stroke: #255ff4;
}

.housing ol li .result .report .start .pl__ring--d {
  animation-name: ringD;
  stroke: #f42582;
}

@keyframes ringA {

  from,
  4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }

  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }

  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }

  40%,
  54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }

  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }

  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }

  90%,
  to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}

@keyframes ringB {

  from,
  12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }

  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }

  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }

  48%,
  62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }

  98%,
  to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}

@keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  36%,
  58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  94%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@keyframes ringD {

  from,
  8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  44%,
  50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  86%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

.housing ol li .result .report .wait {
  position: relative;
  width: 25px;
  height: 25px;
  transform: rotate(165deg);
}

.housing ol li .result .report .wait::before,
.housing ol li .result .report .wait::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  transform: translate(-50%, -50%);
}

.housing ol li .result .report .wait::before {
  animation: before8 2s infinite;
}

.housing ol li .result .report .wait::after {
  animation: after6 2s infinite;
}

@keyframes before8 {
  0% {
    width: 5px;
    box-shadow: 10px -5px rgba(225, 20, 98, 0.75), -10px 5px rgba(111, 202, 220, 0.75);
  }

  35% {
    width: 25px;
    box-shadow: 0 -5px rgba(225, 20, 98, 0.75), 0 5px rgba(111, 202, 220, 0.75);
  }

  70% {
    width: 5px;
    box-shadow: -10px -5px rgba(225, 20, 98, 0.75), 10px 5px rgba(111, 202, 220, 0.75);
  }

  100% {
    box-shadow: 10px -5px rgba(225, 20, 98, 0.75), -10px 5px rgba(111, 202, 220, 0.75);
  }
}

@keyframes after6 {
  0% {
    height: 5px;
    box-shadow: 5px 10px rgba(61, 184, 143, 0.75), -5px -1px rgba(233, 169, 32, 0.75);
  }

  35% {
    height: 25px;
    box-shadow: 5px 0 rgba(61, 184, 143, 0.75), -5px 0 rgba(233, 169, 32, 0.75);
  }

  70% {
    height: 5px;
    box-shadow: 5px -10px rgba(61, 184, 143, 0.75), -5px 10px rgba(233, 169, 32, 0.75);
  }

  100% {
    box-shadow: 5px 10px rgba(61, 184, 143, 0.75), -5px -10px rgba(233, 169, 32, 0.75);
  }
}

.housing ol li .roadTeam {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.housing ol li .roadTeam .launch {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.housing ol li .roadTeam .troop a {
  justify-content: end;
}

.housing ol li .roadTeam .troop a strong {
  text-align: right;
}

.housing ol li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../public/image/match_bg.png) no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.housing ol li:hover {
  background: rgba(33, 33, 33, 0.3);
}

@media screen and (max-width: 768px) {
  .housing ol {
    gap: 0.2rem;
  }

  .housing ol li {
    padding: 0.2rem;
  }

  .housing ol li .troop a {
    gap: 0.13333rem;
  }

  .housing ol li .troop a img {
    width: 0.4rem;
  }

  .housing ol li .troop a strong {
    font-size: 0.32rem;
  }

  .housing ol li .hostTeam {
    grid-template-columns: auto;
    gap: 0.2rem;
  }

  .housing ol li .hostTeam .world {
    text-align: left;
    font-size: 0.29333rem;
  }

  .housing ol li .result {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0.13333rem;
  }

  .housing ol li .result .score {
    font-size: 0.37333rem;
  }

  .housing ol li .result .report .finish {
    padding: 0.10667rem 0.16rem;
    gap: 0.06667rem;
  }

  .housing ol li .result .report .finish span {
    white-space: nowrap;
    font-size: 0.29333rem;
  }

  .housing ol li .result .report .finish span.iconfont {
    font-size: 0.34667rem;
  }

  .housing ol li .result .report .start {
    width: 0.6rem;
    height: 0.6rem;
  }

  .housing ol li .result .report .wait {
    width: 0.46667rem;
    height: 0.46667rem;
  }

  .housing ol li .result .report .wait::before,
  .housing ol li .result .report .wait::after {
    width: 0.06667rem;
    height: 0.06667rem;
    border-radius: 0.04rem;
  }

  @keyframes before8 {
    0% {
      width: 0.06667rem;
      box-shadow: 0.13333rem -0.06667rem rgba(225, 20, 98, 0.75), -0.13333rem 0.06667rem rgba(111, 202, 220, 0.75);
    }

    35% {
      width: 0.33333rem;
      box-shadow: 0 -0.06667rem rgba(225, 20, 98, 0.75), 0 0.06667rem rgba(111, 202, 220, 0.75);
    }

    70% {
      width: 0.06667rem;
      box-shadow: -0.13333rem -0.06667rem rgba(225, 20, 98, 0.75), 0.13333rem 0.06667rem rgba(111, 202, 220, 0.75);
    }

    100% {
      box-shadow: 0.13333rem -0.06667rem rgba(225, 20, 98, 0.75), -0.13333rem 0.06667rem rgba(111, 202, 220, 0.75);
    }
  }

  @keyframes after6 {
    0% {
      height: 0.06667rem;
      box-shadow: 0.06667rem 0.13333rem rgba(61, 184, 143, 0.75), -0.06667rem -0.01333rem rgba(233, 169, 32, 0.75);
    }

    35% {
      height: 0.33333rem;
      box-shadow: 0.06667rem 0 rgba(61, 184, 143, 0.75), -0.06667rem 0 rgba(233, 169, 32, 0.75);
    }

    70% {
      height: 0.06667rem;
      box-shadow: 0.06667rem -0.13333rem rgba(61, 184, 143, 0.75), -0.06667rem 0.13333rem rgba(233, 169, 32, 0.75);
    }

    100% {
      box-shadow: 0.06667rem 0.13333rem rgba(61, 184, 143, 0.75), -0.06667rem -0.13333rem rgba(233, 169, 32, 0.75);
    }
  }

  .housing ol li .roadTeam {
    grid-template-columns: auto;
    gap: 0.2rem;
  }

  .housing ol li .roadTeam .launch {
    order: 1;
    font-size: 0.32rem;
    text-align: right;
  }

  .housing ol li .roadTeam .troop a strong {
    font-size: 0.32rem;
  }
}

/* 主页 */
.homeMain {
  width: 100%;
  height: fit-content;
  background: url(../public/image/bannar.webp) no-repeat;
  background-position: top;
  background-size: 100%;
  padding-top: 150px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .homeMain {
    padding: 0.66667rem 0.2rem;
    padding-top: 2rem;
  }
}

.homeMain .relevance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  margin-bottom: 30px;
  padding-top: 60px;
}

.homeMain .relevance .trapezoid {
  position: relative;
  width: 238px;
  height: fit-content;
  overflow: hidden;
  text-align: center;
  padding: 10px 0;
  z-index: 1;
}

.homeMain .relevance .trapezoid::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 10% 100%);
  background: #3f4759;
  z-index: -1;
}

.homeMain .relevance .trapezoid strong {
  font-size: 24px;
  font-weight: bold;
}

.homeMain .relevance .slash {
  flex: 1;
  position: relative;
  height: 3px;
  background: #3f4759;
}

.homeMain .relevance .slash::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 3px;
  height: 25px;
  background: #3f4759;
  transform: skewX(30deg);
}

.homeMain .relevance .slash:last-child::before {
  right: unset;
  left: -8px;
  transform: skewX(-30deg);
}

@media screen and (max-width: 768px) {
  .homeMain .relevance {
    gap: 0.04rem;
    margin-bottom: 0.4rem;
    padding-top: 0.8rem;
  }

  .homeMain .relevance .trapezoid {
    width: 3.17333rem;
    padding: 0.13333rem 0;
  }

  .homeMain .relevance .trapezoid strong {
    font-size: 0.37333rem;
  }

  .homeMain .relevance .slash {
    height: 0.08rem;
  }

  .homeMain .relevance .slash::before {
    right: -0.10667rem;
    width: 0.08rem;
    height: 0.4rem;
  }

  .homeMain .relevance .slash:last-child::before {
    left: -0.10667rem;
  }
}

.homeMain .linkNav {
  width: 100%;
  margin-bottom: 20px;
}

.homeMain .linkNav ul {
  width: 100%;
  display: flex;
  gap: 1px;
  overflow-x: auto;
}

.homeMain .linkNav ul li {
  background: #2e3444;
}

.homeMain .linkNav ul li a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 20px 30px;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.homeMain .linkNav ul li:hover,
.homeMain .linkNav ul li.active {
  background: #0091fe;
}

@media screen and (max-width: 768px) {
  .homeMain .linkNav {
    margin-bottom: 0.26667rem;
  }

  .homeMain .linkNav ul li a {
    padding: 0.26667rem 0.4rem;
    font-size: 0.32rem;
  }
}

.homeMain .competi {
  width: 100%;
  height: fit-content;
}

.homeMain .television {
  width: 100%;
  height: fit-content;
}

.homeMain .popular {
  width: 100%;
  height: fit-content;
}

.homeMain .popular .fieryCorps {
  width: 100%;
}

.homeMain .popular .fieryCorps ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.homeMain .popular .fieryCorps ol li {
  position: relative;
  width: 100%;
  height: 136px;
  overflow: hidden;
  z-index: 2;
}

.homeMain .popular .fieryCorps ol li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.homeMain .popular .fieryCorps ol li a img {
  height: 52px;
  width: fit-content;
}

.homeMain .popular .fieryCorps ol li a strong {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 45px;
  box-sizing: border-box;
}

.homeMain .popular .fieryCorps ol li .overlay {
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transition: transform 0.99s;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.homeMain .popular .fieryCorps ol li .overlay::after,
.homeMain .popular .fieryCorps ol li .overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.homeMain .popular .fieryCorps ol li .overlay::after {
  background: url(../public/image/polygon.png) no-repeat;
  background-size: 100% 100%;
  transform: rotateY(0deg);
}

.homeMain .popular .fieryCorps ol li .overlay::before {
  background: url(../public/image/polygon_up.png) no-repeat;
  background-size: 100% 100%;
  transform: rotateY(180deg);
}

.homeMain .popular .fieryCorps ol li:hover .overlay {
  transform: rotateY(180deg);
}

@media screen and (max-width: 768px) {
  .homeMain .popular .fieryCorps ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.26667rem;
  }

  .homeMain .popular .fieryCorps ol li {
    height: 1.81333rem;
  }

  .homeMain .popular .fieryCorps ol li a {
    gap: 0.13333rem;
  }

  .homeMain .popular .fieryCorps ol li a img {
    height: 0.86667rem;
  }

  .homeMain .popular .fieryCorps ol li a strong {
    font-size: 0.29333rem;
    padding: 0 0.6rem;
  }
}

.homeMain .rankChart {
  width: 100%;
  height: fit-content;
}

.homeMain .rankChart .smallNav {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  margin-bottom: 15px;
}

.homeMain .rankChart .smallNav ul {
  display: flex;
  gap: 15px;
}

.homeMain .rankChart .smallNav ul li {
  position: relative;
  width: fit-content;
  height: fit-content;
}

.homeMain .rankChart .smallNav ul li a {
  display: block;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.homeMain .rankChart .smallNav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: all 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.homeMain .rankChart .smallNav ul li:hover::before,
.homeMain .rankChart .smallNav ul li.active::before {
  background-color: #0091fe;
  width: 100%;
}

.homeMain .rankChart .smallNav ul li:hover a,
.homeMain .rankChart .smallNav ul li.active a {
  color: #0091fe;
}

@media screen and (max-width: 768px) {
  .homeMain .rankChart .smallNav {
    margin-bottom: 0.2rem;
  }

  .homeMain .rankChart .smallNav ul {
    gap: 0.2rem;
  }

  .homeMain .rankChart .smallNav ul li a {
    padding: 0.13333rem 0.2rem;
    font-size: 0.29333rem;
  }

  .homeMain .rankChart .smallNav ul li::before {
    height: 0.05333rem;
  }
}

.homeMain .rankChart .circular {
  width: 100%;
}

.homeMain .rankChart .circular ol {
  width: 100%;
  height: fit-content;
}

.homeMain .rankChart .circular ol li {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
  border-bottom: 1px solid #687083;
  background: rgba(46, 52, 68, 0.98);
}

.homeMain .rankChart .circular ol li:last-child {
  border-bottom: none;
}

.homeMain .rankChart .circular ol li:first-child {
  user-select: none;
  background: #687083;
  padding: 10px 0;
}

.homeMain .rankChart .circular ol li:first-child strong {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.homeMain .rankChart .circular ol li:nth-child(n + 2) {
  padding: 8px 0;
  cursor: pointer;
}

.homeMain .rankChart .circular ol li:nth-child(n + 2):hover {
  background: #0091fe;
}

.homeMain .rankChart .circular ol li .place {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeMain .rankChart .circular ol li .place span {
  font-size: 16px;
  font-weight: bold;
}

.homeMain .rankChart .circular ol li span {
  font-size: 14px;
}

.homeMain .rankChart .circular ol li .collective {
  width: 100%;
  overflow: hidden;
}

.homeMain .rankChart .circular ol li .collective a {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 12px;
}

.homeMain .rankChart .circular ol li .collective a img {
  width: auto;
  height: 32px;
}

.homeMain .rankChart .circular ol li .collective a span {
  font-size: 14px;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.homeMain .rankChart .circular ol li:nth-child(2) .place {
  background: url(../public/image/rank1.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.homeMain .rankChart .circular ol li:nth-child(3) .place {
  background: url(../public/image/rank2.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.homeMain .rankChart .circular ol li:nth-child(4) .place {
  background: url(../public/image/rank3.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .homeMain .rankChart .circular ol li:first-child {
    padding: 0.13333rem 0;
  }

  .homeMain .rankChart .circular ol li:first-child strong {
    font-size: 0.32rem;
  }

  .homeMain .rankChart .circular ol li:nth-child(n + 2) {
    padding: 0.10667rem 0;
  }

  .homeMain .rankChart .circular ol li .place {
    width: 0.46667rem;
    height: 0.46667rem;
  }

  .homeMain .rankChart .circular ol li .place span {
    font-size: 0.29333rem;
  }

  .homeMain .rankChart .circular ol li span {
    font-size: 0.29333rem;
  }

  .homeMain .rankChart .circular ol li .collective a {
    gap: 0.16rem;
  }

  .homeMain .rankChart .circular ol li .collective a img {
    height: 0.42667rem;
  }

  .homeMain .rankChart .circular ol li .collective a span {
    font-size: 0.29333rem;
  }
}

.homeMain .scatter {
  width: 100%;
  height: fit-content;
  padding-bottom: 50px;
}

/* 非首页样式 */
.debris {
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .debris {
    margin-bottom: 0.26667rem;
  }
}

.debris ol {
  display: flex;
}

.debris ol li {
  display: flex;
  align-items: center;
}

.debris ol li::after {
  content: ">";
  margin: 0 8px;
  color: #9ca3af;
}

.debris ol li a {
  display: block;
  color: #0091fe;
}

.debris ol li:first-child a {
  display: flex;
  align-items: center;
  gap: 3px;
}

.debris ol li:first-child a .iconfont {
  color: #00aefe;
}

.debris ol li:last-child {
  flex: 1;
  overflow: hidden;
  padding-left: 3px;
}

.debris ol li:last-child a {
  background: linear-gradient(to right, #0091fe 0%, #00d4ff 100%);
  border-radius: 5px;
  padding: 5px 10px;
  color: #fefeff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.debris ol li:last-child::after {
  content: "";
}

@media screen and (max-width: 768px) {
  .debris ol li::after {
    content: ">";
    margin: 0 0.10667rem;
  }

  .debris ol li a {
    padding: 0.06667rem 0.13333rem;
  }

  .debris ol li a span {
    font-size: 0.29333rem;
  }

  .debris ol li:first-child a {
    gap: 0.04rem;
  }

  .debris ol li:first-child a .iconfont {
    font-size: 0.32rem;
  }

  .debris ol li:last-child {
    padding-left: 0.04rem;
  }

  .debris ol li:last-child a {
    border-radius: 0.06667rem;
  }
}

.district {
  width: 100%;
  padding: 20px 0 50px;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  .district {
    padding: 20px 10px 50px;
  }
}

@media screen and (max-width: 768px) {
  .district {
    padding: 0.66667rem 0.2rem;
  }
}

.blueprint {
  width: 100%;
  height: fit-content;
  padding: 15px;
  box-sizing: border-box;
  background: #2e3444;
  overflow: hidden;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .blueprint {
    padding: 0.2rem;
  }
}

.blueprint ol {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.blueprint ol li {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  background: #687083;
  padding: 15px;
  border-radius: 3px;
}

.blueprint ol li time {
  font-weight: bold;
}

.blueprint ol li .combat {
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
}

.blueprint ol li .combat a {
  overflow: hidden;
}

.blueprint ol li .combat a strong {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blueprint ol li .combat a:first-child {
  text-align: right;
}

.blueprint ol li .combat .fontVs {
  user-select: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.blueprint ol li .actual {
  place-self: center end;
}

@media screen and (max-width: 768px) {
  .blueprint {
    margin-bottom: 0.26667rem;
  }

  .blueprint ol {
    grid-template-columns: auto;
    gap: 0.26667rem;
  }

  .blueprint ol li {
    padding: 0.2rem;
    border-radius: 0.04rem;
  }

  .blueprint ol li time {
    font-size: 0.32rem;
  }

  .blueprint ol li .combat a strong {
    font-size: 0.32rem;
  }

  .blueprint ol li .combat .fontVs {
    font-size: 0.32rem;
  }

  .blueprint ol li .actual span {
    font-size: 0.32rem;
  }
}

.tagline {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.tagline img {
  width: 20px;
}

.tagline strong {
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .tagline {
    gap: 0.13333rem;
    margin-bottom: 0.2rem;
  }

  .tagline img {
    width: 0.33333rem;
  }

  .tagline strong {
    font-size: 0.32rem;
  }
}

.esportsHot {
  width: 100%;
  height: fit-content;
  padding: 15px;
  box-sizing: border-box;
  background: #2e3444;
}

@media screen and (max-width: 768px) {
  .esportsHot {
    padding: 0.2rem;
  }
}

.esportsHot .global {
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.esportsHot .global ol {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.esportsHot .global ol li a {
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .esportsHot .global ol {
    gap: 0.2rem;
  }

  .esportsHot .global ol li a {
    font-size: 0.29333rem;
  }
}

.targeted {
  width: 100%;
  height: fit-content;
  padding: 15px;
  box-sizing: border-box;
  background: #2e3444;
}

@media screen and (max-width: 768px) {
  .targeted {
    padding: 0.2rem;
  }
}

.targeted h1 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.targeted .genesis {
  width: 100%;
  margin: 10px 0;
}

.targeted .genesis ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.targeted .genesis ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.targeted .genesis ul li strong {
  font-weight: bold;
}

.targeted .genesis ul li img {
  height: 16px;
}

@media screen and (max-width: 768px) {
  .targeted h1 {
    font-size: 0.42667rem;
  }

  .targeted .genesis {
    margin: 0.13333rem 0;
  }

  .targeted .genesis ul {
    gap: 0.2rem;
  }

  .targeted .genesis ul li {
    gap: 0.06667rem;
  }

  .targeted .genesis ul li span,
  .targeted .genesis ul li time,
  .targeted .genesis ul li strong {
    font-size: 0.32rem;
  }

  .targeted .genesis ul li img {
    height: 0.32rem;
  }
}

.summary {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.summary p {
  line-height: 25px;
  text-indent: 20px;
}

.summary .visual {
  width: 100%;
  text-align: center;
}

.summary img {
  width: 70% !important;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .summary {
    gap: 0.2rem;
    margin-bottom: 0.46667rem;
  }

  .summary p {
    line-height: 0.46667rem;
    text-indent: 0.33333rem;
  }

  .summary img {
    width: 100% !important;
  }
}

.ripple {
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.ripple ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ripple ul li {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  border: 1px solid #3f4759;
  border-radius: 15px;
}

.ripple ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

.ripple ul li a span {
  font-weight: bold;
  white-space: nowrap;
}

.ripple ul li a p {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ripple ul li:hover {
  background: #0091fe;
  border-color: #0091fe;
}

.present {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 15px;
}

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

.present .playing {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.present time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .present {
    height: 4.8rem;
    border-radius: 0.06667rem;
    margin-bottom: 0.2rem;
  }

  .present .playing {
    width: 1.33333rem;
    height: 1.33333rem;
  }

  .present time {
    font-size: 0.32rem;
    right: 0.13333rem;
    bottom: 0.13333rem;
  }
}

.lecture {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lecture ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .lecture {
    gap: 0.13333rem;
  }

  .lecture ol {
    gap: 0.13333rem;
  }

  .lecture ol span,
  .lecture ol a,
  .lecture ol time {
    font-size: 0.32rem;
  }

  .lecture p {
    font-size: 0.32rem;
  }
}

.connected {
  width: 100%;
  height: fit-content;
  padding: 15px;
  box-sizing: border-box;
  background: #2e3444;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .connected {
    padding: 0.2rem;
  }
}

.connected .similar ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.connected .similar ul li a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connected .similar ul li a .jacket {
  position: relative;
  width: 100%;
  height: 150px;
}

.connected .similar ul li a .jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.connected .similar ul li a .jacket .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

.connected .similar ul li a .jacket .play img {
  width: 100%;
  height: 100%;
}

.connected .similar ul li a .jacket time {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-weight: bold;
}

.connected .similar ul li a .jacket time.historical {
  right: unset;
  bottom: unset;
  left: 5px;
  top: 5px;
}

.connected .similar ul li a p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .connected .similar ul li a {
    gap: 0.13333rem;
  }

  .connected .similar ul li a .jacket {
    height: 2rem;
  }

  .connected .similar ul li a .jacket .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.8rem;
    height: 0.8rem;
  }

  .connected .similar ul li a .jacket time {
    font-size: 0.32rem;
    right: 0.06667rem;
    bottom: 0.06667rem;
  }

  .connected .similar ul li a .jacket time.historical {
    left: 0.06667rem;
    top: 0.06667rem;
  }

  .connected .similar ul li a p {
    font-size: 0.29333rem;
  }
}

.prologue {
  font-weight: bold;
  text-indent: 20px;
  line-height: 25px;
}

@media screen and (max-width: 768px) {
  .prologue {
    text-indent: 0.33333rem;
    line-height: 0.46667rem;
  }
}

.raceCasket {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: url(../public/image/matchs_lanqiu_bg.png) no-repeat;
  background-size: 100% 100%;
  margin: 15px 0;
}

.raceCasket.besides {
  background: url(../public/image/matchs_zuqiu_bg.png) no-repeat;
  background-size: 100% 100%;
}

.raceCasket .subtitles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.raceCasket .subtitles a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.raceCasket .subtitles a span {
  font-weight: bold;
}

.raceCasket .subtitles a p {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.raceCasket .athletics {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  place-items: center;
}

.raceCasket .athletics .group {
  width: 100%;
  overflow: hidden;
}

.raceCasket .athletics .group a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.raceCasket .athletics .group a img {
  width: 120px;
}

.raceCasket .athletics .group a strong {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
}

.raceCasket .athletics .region {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.raceCasket .athletics .region time {
  font-size: 16px;
  font-weight: bold;
}

.raceCasket .athletics .region strong {
  font-size: 24px;
  font-weight: bold;
}

.raceCasket .athletics .region a {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .raceCasket {
    height: 5.06667rem;
    margin: 0.2rem 0;
  }

  .raceCasket .subtitles a {
    gap: 0.06667rem;
    padding: 0.13333rem;
  }

  .raceCasket .subtitles a span,
  .raceCasket .subtitles a p {
    font-size: 0.29333rem;
  }

  .raceCasket .athletics .group a {
    gap: 0.06667rem;
  }

  .raceCasket .athletics .group a img {
    width: 2rem;
  }

  .raceCasket .athletics .group a strong {
    font-size: 0.32rem;
  }

  .raceCasket .athletics .region {
    gap: 0.13333rem;
  }

  .raceCasket .athletics .region time {
    font-size: 0.34667rem;
  }

  .raceCasket .athletics .region strong {
    font-size: 0.37333rem;
  }

  .raceCasket .athletics .region a {
    font-size: 0.29333rem;
  }
}

.briefing {
  width: 100%;
  height: fit-content;
  padding: 15px;
  box-sizing: border-box;
  background: #2e3444;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .briefing {
    padding: 0.2rem;
  }
}

.briefing .catalog {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  margin-bottom: 20px;
}

.briefing .catalog ol {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.briefing .catalog ol li {
  padding: 10px 20px;
  cursor: pointer;
}

.briefing .catalog ol li span {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.briefing .catalog ol li.active,
.briefing .catalog ol li:hover {
  background: #0091fe;
}

@media screen and (max-width: 768px) {
  .briefing .catalog {
    margin-bottom: 0.26667rem;
  }

  .briefing .catalog ol {
    gap: 0;
    justify-content: space-around;
  }

  .briefing .catalog ol li {
    padding: 0.13333rem 0.26667rem;
  }

  .briefing .catalog ol li span {
    font-size: 0.32rem;
  }
}

.briefing .lectern {
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.briefing .lectern ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.briefing .lectern ol li {
  width: 100%;
}

.briefing .lectern ol li span {
  white-space: nowrap;
}

.briefing .lectern .backer {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.briefing .lectern .backer span {
  white-space: nowrap;
}

.briefing .lectern .backer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.briefing .lectern .backer ul li {
  animation: shrink 2s ease-out infinite;
}

.briefing .lectern .backer ul li a {
  color: #0091fe;
}

@keyframes shrink {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(5%) scale(1.08);
  }
}

.briefing .lectern .caption {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .briefing .lectern ol {
    gap: 0.13333rem;
  }

  .briefing .lectern ol li {
    font-size: 0.29333rem;
  }

  .briefing .lectern ol li time,
  .briefing .lectern ol li a,
  .briefing .lectern ol li span {
    font-size: 0.29333rem;
  }

  .briefing .lectern .backer {
    margin: 0.13333rem 0;
  }

  .briefing .lectern .backer span {
    font-size: 0.29333rem;
  }

  .briefing .lectern .backer ul {
    gap: 0.06667rem;
  }

  .briefing .lectern .backer ul li a {
    font-size: 0.29333rem;
  }

  .briefing .lectern .caption {
    gap: 0.13333rem;
  }

  .briefing .lectern .caption p {
    font-size: 0.29333rem;
  }
}

.briefing .synopsis {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.briefing .synopsis .evolution {
  width: 100%;
}

.briefing .synopsis .evolution .deputy {
  grid-column: span 2;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 10px;
}

.briefing .synopsis .evolution .deputy strong {
  font-size: 18px;
  font-weight: bold;
}

.briefing .synopsis .evolution .trait {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.briefing .synopsis .evolution .trait::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #b0b1b1;
}

.briefing .synopsis .evolution .trait .consult {
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  border-radius: 5px;
}

.briefing .synopsis .evolution .trait .consult ol {
  position: relative;
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
}

.briefing .synopsis .evolution .trait .consult ol li {
  width: 100%;
  height: fit-content;
  padding: 8px;
  box-sizing: border-box;
  margin-bottom: 20px;
  letter-spacing: 2px;
  border-radius: 5px;
  background: rgba(104, 112, 131, 0.3);
}

.briefing .synopsis .evolution .trait .consult ol li p {
  font-weight: bold;
}

.briefing .synopsis .evolution .trait .consult ol li:last-child {
  margin-bottom: 0;
}

.briefing .synopsis .evolution .trait .consult ol li.tidings-level-0 p {
  color: #0f723c;
}

.briefing .synopsis .evolution .trait .consult ol li.tidings-level-1 p {
  color: #fb2828;
}

.briefing .synopsis .evolution .trait .consult ol li.tidings-level-2 p {
  color: #edd579;
}

.briefing .synopsis .evolution .trait .consult ol li.tidings-level-3 p {
  color: #4b8bc1;
}

.briefing .synopsis .evolution .trait .consult ol li.tidings-level-4 p {
  color: #71a172;
}

.briefing .synopsis .evolution .trait .consult ol li.tidings-level-5 p {
  color: #b863dc;
}

.briefing .synopsis .evolution .trait.neutral {
  grid-template-columns: auto;
  gap: unset;
}

.briefing .synopsis .evolution .trait.neutral::after {
  display: none;
}

.briefing .synopsis .evolution .trait.neutral .consult ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

@media screen and (max-width: 768px) {
  .briefing .synopsis {
    gap: 0.26667rem;
  }

  .briefing .synopsis .evolution .deputy {
    padding: 0.13333rem 0;
    margin-bottom: 0.13333rem;
  }

  .briefing .synopsis .evolution .deputy strong {
    font-size: 0.34667rem;
  }

  .briefing .synopsis .evolution .trait {
    gap: 0.8rem;
  }

  .briefing .synopsis .evolution .trait::after {
    width: 0.04rem;
  }

  .briefing .synopsis .evolution .trait .consult {
    border-radius: 0.06667rem;
  }

  .briefing .synopsis .evolution .trait .consult ul li {
    padding: 0.10667rem;
    margin-bottom: 0.26667rem;
    letter-spacing: 0.02667rem;
    border-radius: 0.06667rem;
  }

  .briefing .synopsis .evolution .trait .consult ul li p {
    font-size: 0.29333rem;
  }

  .briefing .synopsis .evolution .trait.neutral .consult ul {
    gap: 0 0.26667rem;
  }
}

.disruptor {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .disruptor {
    margin-bottom: 0.26667rem;
  }
}

.disruptor .union {
  width: 100%;
  overflow: hidden;
}

.disruptor .union a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.disruptor .union a img {
  height: 60px;
}

.disruptor .union a strong {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .disruptor .union a {
    gap: 0.13333rem;
  }

  .disruptor .union a img {
    height: 1.06667rem;
  }

  .disruptor .union a strong {
    font-size: 0.29333rem;
  }
}

.registry {
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.registry .annotate {
  position: relative;
  width: 100%;
  padding-left: 10px;
  box-sizing: border-box;
  margin: 15px 0;
}

.registry .annotate::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 88%;
  border-radius: 2px;
  background: #0091fe;
}

.registry .annotate strong {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .registry .annotate {
    padding-left: 0.2rem;
    margin: 0.2rem 0;
  }

  .registry .annotate::before {
    width: 0.08rem;
    border-radius: 0.02667rem;
  }

  .registry .annotate strong {
    font-size: 0.32rem;
  }
}

.registry .arrange {
  width: 100%;
  height: fit-content;
}

.registry .arrange ol {
  width: 100%;
  height: fit-content;
  border: 1px solid #687083;
  box-sizing: border-box;
}

.registry .arrange ol li {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #687083;
  align-items: center;
}

.registry .arrange ol li:last-child {
  border-bottom: none;
}

.registry .arrange ol li .enroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.registry .arrange ol li .contest {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  place-items: center;
}

.registry .arrange ol li .feedback {
  place-self: center end;
}

.registry .arrange ol li:first-child {
  background: #687083;
}

.registry .arrange ol li:first-child strong {
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.registry .arrange ol li:nth-child(n + 2) .enroll time,
.registry .arrange ol li:nth-child(n + 2) .enroll a {
  font-weight: bold;
}

.registry .arrange ol li:nth-child(n + 2) .enroll time {
  font-size: 14px;
}

.registry .arrange ol li:nth-child(n + 2) .contest {
  width: 100%;
}

.registry .arrange ol li:nth-child(n + 2) .contest .troop {
  width: 100%;
  overflow: hidden;
}

.registry .arrange ol li:nth-child(n + 2) .contest .troop a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.registry .arrange ol li:nth-child(n + 2) .contest .troop a img {
  width: 25px;
}

.registry .arrange ol li:nth-child(n + 2) .contest .troop a span {
  flex: 1;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.registry .arrange ol li:nth-child(n + 2) .contest .troop:first-child a span {
  text-align: right;
}

.registry .arrange ol li:nth-child(n + 2) .contest .tally {
  font-weight: bold;
  font-size: 14px;
}

.registry .arrange ol li:nth-child(n + 2) .feedback {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .registry .arrange ol li {
    padding: 0.2rem 0.13333rem;
  }

  .registry .arrange ol li:first-child strong {
    font-size: 0.32rem;
  }

  .registry .arrange ol li:nth-child(n + 2) {
    grid-template-columns: auto;
    gap: 0.13333rem;
  }

  .registry .arrange ol li:nth-child(n + 2) .enroll time,
  .registry .arrange ol li:nth-child(n + 2) .enroll a {
    font-size: 0.29333rem;
  }

  .registry .arrange ol li:nth-child(n + 2) .enroll time {
    place-self: center end;
  }

  .registry .arrange ol li:nth-child(n + 2) .contest .troop a {
    gap: 0.06667rem;
  }

  .registry .arrange ol li:nth-child(n + 2) .contest .troop a img {
    width: 0.33333rem;
  }

  .registry .arrange ol li:nth-child(n + 2) .contest .troop a span {
    font-size: 0.29333rem;
  }

  .registry .arrange ol li:nth-child(n + 2) .contest .troop:first-child a span {
    font-size: 0.29333rem;
  }

  .registry .arrange ol li:nth-child(n + 2) .contest .tally {
    font-size: 0.29333rem;
  }

  .registry .arrange ol li:nth-child(n + 2) .feedback {
    place-self: center;
    font-size: 0.29333rem;
  }
}

.registry .shelf {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .registry .shelf {
    gap: 0.2rem;
  }
}

.registry .squad {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.registry .squad span {
  padding: 10px;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
}

.registry .squad span:hover,
.registry .squad span.active {
  background: #0091fe;
}

@media screen and (max-width: 768px) {
  .registry .squad {
    gap: 0.13333rem;
    margin-bottom: 0.2rem;
  }

  .registry .squad span {
    padding: 0.13333rem;
    border-radius: 0.13333rem;
    font-size: 0.29333rem;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.ballSorts {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 20px;
}

.ballSorts .balls {
  width: 100%;
  background: #2e3444;
}

.ballSorts .balls a {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.ballSorts .balls a strong {
  font-size: 16px;
  font-weight: bold;
}

.ballSorts .balls a img {
  width: 28px;
}

.ballSorts .balls.active,
.ballSorts .balls:hover {
  background: #0091fe;
}

@media screen and (max-width: 768px) {
  .ballSorts {
    margin-bottom: 0.26667rem;
    gap: 0.06667rem;
  }

  .ballSorts .balls a {
    padding: 0.13333rem 0;
    gap: 0.06667rem;
  }

  .ballSorts .balls a strong {
    font-size: 0.34667rem;
  }

  .ballSorts .balls a img {
    width: 0.42667rem;
  }
}

.perWeek {
  width: 100%;
  overflow: auto;
  margin-bottom: 15px;
}

.perWeek ol {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
}

.perWeek ol li {
  background: #2e3444;
  border: 1px solid #3f4759;
  border-radius: 5px;
  white-space: nowrap;
}

.perWeek ol li a {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  font-weight: bold;
  padding: 10px 40px;
  gap: 3px;
}

.perWeek ol li a span {
  font-size: 14px;
  font-weight: bold;
}

.perWeek ol li.active,
.perWeek ol li:hover {
  background: #0091fe;
}

@media screen and (max-width: 1000px) {
  .perWeek ol li {
    margin-right: 10px;
  }

  .perWeek ol li:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .perWeek {
    margin-bottom: 0.26667rem;
  }

  .perWeek ol li {
    margin-right: 0.2rem;
  }

  .perWeek ol li:last-child {
    margin-right: 0;
  }

  .perWeek ol li a {
    padding: 0.13333rem 0.53333rem;
    gap: 0.04rem;
  }

  .perWeek ol li a time,
  .perWeek ol li a span {
    font-size: 0.29333rem;
  }
}