@charset "UTF-8";

/* 全局样式修改 */
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%;
	color: #fff;
}

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;
}

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: 14px;
}

.clear {
  clear: both;
}

div,
ul,
li,
input {
  box-sizing: border-box;
}

em,
i,
strong {
  font-style: normal;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background: #6d72f3;
}

::-webkit-scrollbar-track {
  border-radius: 1em;
  background-color: #fff;
}

.w {
  width: 1024px;
  margin: 0 auto;
}

figure {
  margin: 0;
}

@media screen and (max-width: 1000px) {
  .w {
    width: 100%;
  }
}

.header {
  height: 70px;
  background: rgba(0, 31, 118, 0.7);
}

.header .nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 2px solid #60b3d8;
  border-bottom: 2px solid #60b3d8;
}

.header .nav .select {
  flex: 1;
  width: 0;
  height: 100%;
  user-select: none;
}

.header .nav .select ul {
  width: 100%;
  overflow-x: auto;
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.header .nav .select ul li {
  width: fit-content;
  height: 100%;
}

.header .nav .select ul li a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.header .nav .select ul .active {
  background: url(../public/img/select_active.jpg) no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.header .nav .burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: none;
}

.header .nav .burger input {
  display: none;
}

.header .nav .burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.header .nav .burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.header .nav .burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.header .nav .burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.header .nav .hide span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.header .nav .hide span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.header .nav .hide span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

.footer {
  background: rgba(9, 7, 26, 0.7);
  padding: 25px 0;
}

.footer .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer .content ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .content ul li {
  display: flex;
  align-items: center;
}

.footer .content ul li::after {
  content: '';
  width: 1px;
  height: 12px;
  background: #adddee;
  margin: 0 8px;
}

.footer .content ul li:last-child::after {
  display: none;
}

.footer .content ul li a {
  font-size: 14px;
  color: #adddee;
}

.footer .content p {
  font-size: 14px;
  line-height: 24px;
  color: #adddee;
  text-align: center;
}

.footer .content p a {
  color: #adddee;
}

.footer .content p .svgCode {
  height: 11px;
}

body {
  background: url(../public/img/index_bj.jpg) no-repeat;
  background-position: top;
  background-size: 100% 100%;
}

.main {
  padding-top: 40px;
  padding-bottom: 96px;
}

.main .title {
  text-align: center;
  margin-bottom: 45px;
  user-select: none;
}

.main .switch_swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 29px;
  box-sizing: border-box;
  height: 33px;
}

.main .switch_swiper .mySwiper {
  position: unset;
  height: 100%;
}

.main .switch_swiper .mySwiper .swiper-slide {
  background: url(../public/img/nba_swiper.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}

.main .switch_swiper .mySwiper .swiper-slide a {
  font-size: 14px;
  color: #b3eafe;
  white-space: nowrap;
}

.main .switch_swiper .mySwiper .active {
  background: url(../public/img/swiper-slide-active.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.main .switch_swiper .next,
.main .switch_swiper .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.main .switch_swiper .next {
  right: 0;
}

.main .switch_swiper .prev {
  left: 0;
}

.main .match_show {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}

.main .horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}

.main .horizontal li {
  width: calc(100% / 4 - 17px);
  height: 220px;
  border: 3px solid #0e5ac1;
  background: rgba(11, 39, 113, 0.6);
  user-select: none;
}

.main .horizontal li:hover {
  background: linear-gradient(to top, #1a4f88, #213986, #313783);
}

.main .horizontal li .jamb {
  width: 100%;
  height: 100%;
  border: 1px solid #b3eafe;
  display: flex;
  flex-direction: column;
}

.main .horizontal li .jamb .fine {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 63px;
  border-bottom: 1px solid #23539d;
  gap: 20px;
}

.main .horizontal li .jamb .fine .begin {
  white-space: nowrap;
  font-size: 12px;
  color: #5581d5;
}

.main .horizontal li .jamb .fine .begin a {
  color: #5581d5;
}

.main .horizontal li .jamb .fine .timeInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #5581d5;
}

.main .horizontal li .jamb .fine .timeInfo time:nth-child(2) {
  font-size: 16px;
  color: #fff;
}

.main .horizontal li .jamb .fine .category {
  position: relative;
  width: 32px;
  text-align: center;
  background: #fff;
  align-self: flex-start;
}

.main .horizontal li .jamb .fine .category::after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  left: 0;
  bottom: -9px;
  border-left: 16px solid #fff;
  border-right: 16px solid #fff;
  border-bottom: 10px solid transparent;
}

.main .horizontal li .jamb .fine .category img {
  width: 25px;
  height: auto;
}

.main .horizontal li .jamb .rank {
  padding: 19px 5px;
  box-sizing: border-box;
  border-bottom: 1px solid #23539d;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 5px;
  width: 100%;
  box-sizing: border-box;
}

.main .horizontal li .jamb .rank .linkBox {
  width: 100%;
  overflow: hidden;
}

.main .horizontal li .jamb .rank .linkBox .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.main .horizontal li .jamb .rank .linkBox .team img {
  width: auto;
  height: 46px;
}

.main .horizontal li .jamb .rank .linkBox .team span {
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

.main .horizontal li .jamb .rank .vs {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.main .horizontal li .jamb .rank .vs .score {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main .horizontal li .jamb .rank .vs .score span {
  width: 30px;
  height: 35px;
  color: #fefefe;
  font-size: 20px;
  font-weight: bold;
  background: #1a57b1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .horizontal li .jamb .rank .vs .score em {
  font-size: 22px;
  color: #a8c3e8;
  font-weight: bold;
}

.main .horizontal li .jamb .rank .vs .status {
  width: 64px;
  height: 25px;
  border: 2px solid #c6effe;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 7px;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
  color: #b3eafe;
}

.main .horizontal li .jamb .rank .vs .status a {
  display: block;
  width: 100%;
  height: 100%;
  color: #b3eafe;
}

.main .horizontal li .jamb .rank .vs .wait {
  background: #da67de;
}

.main .horizontal li .jamb .rank .vs .start {
  background: #5351b9;
}

.main .horizontal li .jamb .countdown {
  flex: 1;
  width: 100%;
  color: #b3eafe;
  font-size: 12px;
}

.main .horizontal li .jamb .countdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #b3eafe;
  font-size: 12px;
}

.main .recomNews {
  width: 100%;
  overflow: hidden;
  margin-bottom: 121px;
}

.main .various {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 45px;
}

.main .various li {
  width: calc(100% / 2 - 10px);
  height: fit-content;
  border: 3px solid #0e5ac1;
  background: rgba(11, 39, 113, 0.6);
}

.main .various li:hover {
  border-color: #da67de;
  background: linear-gradient(to left, #1a4f88, #213986, #313783);
}

.main .various li .linkBox {
  width: 100%;
  height: 100%;
  border: 1px solid #b3eafe;
  display: block;
}

.main .various li .linkBox figure {
  display: flex;
  width: 100%;
  height: fit-content;
  gap: 10px;
}

.main .various li .linkBox figure .Image {
  width: 35%;
  height: 146px;
  user-select: none;
}

.main .various li .linkBox figure figcaption {
  flex: 1;
  width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.main .various li .linkBox figure figcaption article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main .various li .linkBox figure figcaption article span {
  font-size: 16px;
  display: block;
  color: #fff;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.main .various li .linkBox figure figcaption article p {
  font-size: 14px;
  color: #b3eafe;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  -webkit-line-clamp: 2;
}

.main .various li .linkBox figure figcaption .introduce {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .various li .linkBox figure figcaption .introduce span,
.main .various li .linkBox figure figcaption .introduce time {
  font-size: 12px;
  color: #b3eafe;
  white-space: nowrap;
}

.main .recomVideo {
  width: 100%;
  overflow: hidden;
  margin-bottom: 106px;
}

.main .everyone {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 45px;
}

.main .everyone li {
  width: calc(100% / 4 - 19px);
  height: 278px;
  box-sizing: border-box;
  border: 3px solid #0e5ac1;
  background: rgba(11, 39, 113, 0.6);
}

.main .everyone li:hover {
  background: linear-gradient(to top, #1a4f88, #213986, #313783);
}

.main .everyone li .linkBox {
  width: 100%;
  height: 100%;
  border: 1px solid #b3eafe;
  display: block;
}

.main .everyone li .linkBox figure {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.main .everyone li .linkBox figure .cover {
  position: relative;
  width: 100%;
  height: 163px;
}

.main .everyone li .linkBox figure .cover .Image {
  width: 100%;
  height: 100%;
}

.main .everyone li .linkBox figure .cover .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
}

.main .everyone li .linkBox figure .cover .play img {
  width: 100%;
  height: 100%;
}

.main .everyone li .linkBox figure .cover time {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
  padding: 5px 8px;
  background: rgba(173, 191, 194, 0.4);
  border-radius: 15px;
}

.main .everyone li .linkBox figure figcaption {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 14px;
  box-sizing: border-box;
}

.main .everyone li .linkBox figure figcaption p {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
  padding: 0 10px;
  box-sizing: border-box;
}

.main .everyone li .linkBox figure figcaption .bright {
  width: 100%;
  height: 40px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .everyone li .linkBox figure figcaption .bright span,
.main .everyone li .linkBox figure figcaption .bright time {
  color: #b3eafe;
  font-size: 12px;
  white-space: nowrap;
}

.main .standings {
  width: 100%;
  overflow: hidden;
}

.main .standings .billboard {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 53px;
}

.main .standings .billboard .ball {
  width: calc(100% / 2 - 12px);
  border: 3px solid #0e5ac1;
}

.main .standings .billboard .ball .ball_title {
  position: relative;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #b3eafe;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #b3eafe;
  white-space: nowrap;
  background: #124cb7;
}

.main .standings .billboard .ball .ball_title::after,
.main .standings .billboard .ball .ball_title::before {
  position: absolute;
  content: '';
  display: block;
  width: 13px;
  height: 9px;
}

.main .standings .billboard .ball .ball_title::after {
  right: -1px;
  top: -1px;
  background: url(../public/img/jiao2.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.main .standings .billboard .ball .ball_title::before {
  left: -1px;
  bottom: -1px;
  background: url(../public/img/jiao1.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.main .standings .billboard .ball .table {
  display: flex;
  flex-direction: column;
  border: 1px solid #b3eafe;
  background: rgba(11, 39, 113, 0.6);
}

.main .standings .billboard .ball .table li {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  align-items: center;
  padding: 10px 15px;
  text-align: center;
}

.main .standings .billboard .ball .table li span {
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
}

.main .standings .billboard .ball .table li:hover {
  background: linear-gradient(to left, #1a4f88, #213986, #313783);
}

.main .standings .billboard .ball .table li:first-child span {
  font-size: 12px;
  color: #b3eafe;
  font-weight: 600;
}

.main .standings .billboard .ball .table li:first-child span:nth-child(2) {
  text-align: left;
  padding-left: 20px;
  box-sizing: border-box;
}

.main .standings .billboard .ball .table li:first-child:hover {
  background: none;
}

.main .standings .billboard .ball .table li .rank {
  font-size: 22px;
  white-space: nowrap;
  color: #fefefe;
  font-weight: bold;
  font-style: oblique;
}

.main .standings .billboard .ball .table li:nth-child(2) .rank {
  color: #da67de;
}

.main .standings .billboard .ball .table li:nth-child(3) .rank {
  color: #da67de;
}

.main .standings .billboard .ball .table li:nth-child(4) .rank {
  color: #da67de;
}

.main .standings .billboard .ball .table li .linkBox {
  width: 100%;
  overflow: hidden;
}

.main .standings .billboard .ball .table li .linkBox .team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main .standings .billboard .ball .table li .linkBox .team img {
  width: 32px;
  height: auto;
}

.main .standings .billboard .ball .table li .linkBox .team span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: #ffffff;
  text-align: left;
}

.index_main {
  padding-top: 97px;
  padding-bottom: 112px;
}

.outside {
  width: 100%;
  overflow: hidden;
}

.outside .videolist {
  width: 100%;
  overflow: hidden;
}

.outside .relatedNews {
  border: 3px solid #0e5ac1;
  margin-top: 107px;
}

.outside .relatedNews .every {
  border: 1px solid #b3eafe;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  box-sizing: border-box;
  gap: 15px;
}

.outside .relatedNews .every li {
  width: calc(100% / 2 - 8px);
}

.outside .relatedNews .every li .linkBox {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.outside .relatedNews .every li .linkBox .category {
  padding: 5px 10px;
  border: 2px solid #1d4496;
  font-size: 14px;
  color: #b3eafe;
  white-space: nowrap;
}

.outside .relatedNews .every li .linkBox p {
  font-size: 14px;
  color: #ffffff;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.outside .relatedNews .every li .linkBox time {
  white-space: nowrap;
  font-size: 12px;
  color: #ffffff;
}

.outside .relatedVideo {
  border: 3px solid #0e5ac1;
  margin-top: 103px;
}

.outside .relatedVideo .every {
  border: 1px solid #b3eafe;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.outside .relatedVideo .every li {
  width: calc(100% / 2 - 10px);
}

.outside .relatedVideo .every li figure {
  display: flex;
  gap: 10px;
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
}

.outside .relatedVideo .every li figure .cover {
  position: relative;
  width: 40%;
  height: 114px;
}

.outside .relatedVideo .every li figure .cover .Image {
  width: 100%;
  height: 100%;
}

.outside .relatedVideo .every li figure .cover .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.outside .relatedVideo .every li figure .cover .play img {
  width: 100%;
  height: 100%;
}

.outside .relatedVideo .every li figure .cover time {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 15px;
  background: rgba(225, 225, 225, 0.5);
}

.outside .relatedVideo .every li figure figcaption {
  flex: 1;
  height: 114px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10px;
  box-sizing: border-box;
}

.outside .relatedVideo .every li figure figcaption p {
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  -webkit-line-clamp: 2;
}

.outside .relatedVideo .every li figure figcaption .bright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outside .relatedVideo .every li figure figcaption .bright span,
.outside .relatedVideo .every li figure figcaption .bright time {
  font-size: 12px;
  color: #b3eafe;
  white-space: nowrap;
}

.anotherTitle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  border: 1px solid #b3eafe;
  border-bottom: none;
  background: #124cb7;
  padding: 0 10px;
  user-select: none;
}

.anotherTitle strong {
  font-size: 16px;
  color: #b3eafe;
  white-space: nowrap;
}

.anotherTitle .more {
  display: flex;
  align-items: center;
  gap: 5px;
}

.anotherTitle .more span {
  font-size: 12px;
  color: #b3eafe;
  white-space: nowrap;
}

.newslist {
  width: 100%;
  overflow: hidden;
}

.matchlist {
  width: 100%;
  overflow: hidden;
}

.matchlist .horizontal li {
  width: calc(100% / 3 - 15px);
}

.plating {
  width: 100%;
  display: flex;
  gap: 20px;
}

.plating .core {
  width: 70%;
}

.plating .core .essay {
  border: 3px solid #0e5ac1;
  width: 100%;
  box-sizing: border-box;
}

.plating .core .essay .neiessay {
  border: 1px solid #b3eafe;
  padding: 20px;
  box-sizing: border-box;
}

.plating .core .essay h1 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}

.plating .core .essay .clearness {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  gap: 20px;
}

.plating .core .essay .clearness time {
  font-size: 12px;
  color: #b3eafe;
  white-space: nowrap;
}

.plating .core .essay .clearness .cat {
  display: flex;
  align-items: center;
  gap: 5px;
}

.plating .core .essay .clearness .cat span {
  color: #b3eafe;
  font-size: 12px;
  white-space: nowrap;
}

.plating .core .essay .clearness .cat .iconfont {
  font-size: 18px;
}

.plating .core .essay .forward {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
}

.plating .core .essay .forward .social-share-icon {
  width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 22px;
}

.plating .core .essay .screen {
  position: relative;
  width: 100%;
  height: 355px;
  cursor: pointer;
}

.plating .core .essay .screen .Image {
  width: 100%;
  height: 100%;
}

.plating .core .essay .screen .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
}

.plating .core .essay .screen .play img {
  width: 100%;
  height: 100%;
}

.plating .core .essay .eventName {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.plating .core .essay .eventName ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.plating .core .essay .eventName ul li {
  white-space: nowrap;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
}

.plating .core .essay .eventName ul li span,
.plating .core .essay .eventName ul li a {
  color: #fff;
}

.plating .core .essay .eventName>span,
.plating .core .essay .eventName p {
  font-size: 12px;
  color: #fff;
}

.plating .core .essay .switchbar {
  margin-top: 20px;
  display: flex;
  width: 100%;
  gap: 30px;
  margin-top: 30px;
}

.plating .core .essay .switchbar li {
  width: calc(100% / 2);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plating .core .essay .switchbar li span {
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.plating .core .essay .switchbar li a {
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
  color: #cd64d7;
}

.plating .core .essay .article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plating .core .essay .article p {
  font-size: 14px;
  color: #ffffff;
  line-height: 26px;
  text-indent: 20px;
}

.plating .core .essay .article img {
  margin: 0 auto;
  width: 80% !important;
  height: auto;
  display: block;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px 0px, rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
}

.plating .core .visual {
  margin-top: 22px;
  border: 3px solid #0e5ac1;
}

.plating .core .visual ul {
  width: 100%;
  border: 1px solid #b3eafe;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  box-sizing: border-box;
}

.plating .core .visual ul li {
  width: calc(100% / 2 - 8px);
}

.plating .core .visual ul li figure {
  width: 100%;
  height: 258px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plating .core .visual ul li figure .cover {
  position: relative;
  width: 100%;
  height: 155px;
}

.plating .core .visual ul li figure .cover .Image {
  width: 100%;
  height: 100%;
}

.plating .core .visual ul li figure .cover .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.plating .core .visual ul li figure .cover .play img {
  width: 100%;
  height: 100%;
}

.plating .core .visual ul li figure .cover time {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 12px;
  color: #fff;
  padding: 3px 10px;
  border-radius: 9px;
  background: rgba(225, 225, 225, 0.5);
  white-space: nowrap;
}

.plating .core .visual ul li figure .cover .bofang {
  position: absolute;
  left: 5px;
  bottom: 5px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.plating .core .visual ul li figure figcaption {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plating .core .visual ul li figure figcaption p {
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 22px;
  -webkit-line-clamp: 2;
}

.plating .core .visual ul li figure figcaption .information {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plating .core .visual ul li figure figcaption .information .category {
  padding: 3px 8px;
  border: 3px solid #14439b;
  font-size: 12px;
  color: #b3eafe;
  white-space: nowrap;
}

.plating .core .visual ul li figure figcaption .information time {
  font-size: 12px;
  color: #b3eafe;
  white-space: nowrap;
}

.plating .aside {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plating .aside .suggestnews {
  width: 100%;
  border: 3px solid #0e5ac1;
}

.plating .aside .suggestnews ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #b3eafe;
  padding-bottom: 30px;
}

.plating .aside .suggestnews ul li {
  width: 100%;
  padding: 0 9px;
  box-sizing: border-box;
}

.plating .aside .suggestnews ul li:first-child {
  padding: 0;
}

.plating .aside .suggestnews ul li figure {
  position: relative;
  height: 125px;
}

.plating .aside .suggestnews ul li figure .Image {
  width: 100%;
  height: 100%;
}

.plating .aside .suggestnews ul li figure .rank {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 3px 10px;
  background: #ff305c;
  font-size: 24px;
  color: #ffffff;
  user-select: none;
  white-space: nowrap;
}

.plating .aside .suggestnews ul li figure figcaption {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 70%;
  font-size: 12px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  -webkit-line-clamp: 2;
}

.plating .aside .suggestnews ul li .linkBox {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.plating .aside .suggestnews ul li .linkBox p {
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 22px;
  -webkit-line-clamp: 2;
  flex: 1;
}

.plating .aside .suggestnews ul li .linkBox .rank {
  width: 28px;
  height: 28px;
  border: 2px solid #ff305c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #ff305c;
}

.plating .aside .up_video {
  width: 100%;
  border: 3px solid #0e5ac1;
}

.plating .aside .up_video ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #b3eafe;
  padding: 15px 10px;
  box-sizing: border-box;
}

.plating .aside .up_video ul li {
  width: 100%;
}

.plating .aside .up_video ul li figure {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 188px;
}

.plating .aside .up_video ul li figure .cover {
  position: relative;
  width: 100%;
  height: 129px;
}

.plating .aside .up_video ul li figure .cover .Image {
  width: 100%;
  height: 100%;
}

.plating .aside .up_video ul li figure .cover .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
}

.plating .aside .up_video ul li figure .cover .play img {
  width: 100%;
  height: 100%;
}

.plating .aside .up_video ul li figure .cover time {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 3px 5px;
  background: rgba(225, 225, 225, 0.5);
  border-radius: 10px;
  font-size: 12px;
  color: #fff;
}

.plating .aside .up_video ul li figure .cover .bofang {
  position: absolute;
  left: 5px;
  bottom: 5px;
  white-space: nowrap;
  font-size: 12px;
  color: #fff;
}

.plating .aside .up_video ul li figure figcaption {
  width: 100%;
  flex: 1;
}

.plating .aside .up_video ul li figure figcaption p {
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 22px;
  -webkit-line-clamp: 2;
}

.biggame {
  position: relative;
  width: 100%;
  height: 313px;
  background: url("../public/img/biggame_bj.png") no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.biggame .source {
  position: absolute;
  left: 0;
  top: 0;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: rgba(11, 56, 146, 0.7);
}

.biggame .source span,
.biggame .source a {
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
}

.biggame .source a {
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biggame .bisaibox {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  align-items: center;
  box-sizing: border-box;
  gap: 25px;
  padding: 20px;
  box-sizing: border-box;
}

.biggame .bisaibox .video_competition_team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  overflow: hidden;
}

.biggame .bisaibox .video_competition_team .competition_team_img {
  width: auto;
  height: 93px;
}

.biggame .bisaibox .video_competition_team .competition_team_img img {
  width: 100%;
  height: 100%;
}

.biggame .bisaibox .video_competition_team span {
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  text-align: center;
  font-weight: bold;
}

.biggame .bisaibox .vs_info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.biggame .bisaibox .vs_info .vs_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.biggame .bisaibox .vs_info .vs_center .vs {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  align-items: center;
  color: #ffffff;
}

.biggame .bisaibox .vs_info .vs_center .vs span {
  font-size: 20px;
}

.biggame .bisaibox .vs_info .vs_center .vs .divide {
  font-size: 20px;
  color: #ffffff;
}

.biggame .bisaibox .vs_info .vs_center .vs .divide:last-child {
  text-align: right;
}

.biggame .bisaibox .vs_info .vs_center time,
.biggame .bisaibox .vs_info .vs_center span {
  font-size: 16px;
  color: #ffffff;
  white-space: nowrap;
}

.biggame .bisaibox .vs_info .vs_center .status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
}

.biggame .bisaibox .vs_info .vs_center .specification {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  color: #ffffff;
  text-align: center;
}

.switching {
  margin-top: 20px;
  border: 3px solid #0e5ac1;
}

.switching .borderswitching {
  border: 1px solid #b3eafe;
  padding: 20px;
  box-sizing: border-box;
  height: fit-content;
  box-sizing: border-box;
}

.switching .modetoggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.switching .modetoggle li {
  width: fit-content;
  height: fit-content;
  border-bottom: 3px solid transparent;
  border: 2px solid #17449a;
  background: rgba(48, 76, 133, 0.7);
  box-sizing: border-box;
}

.switching .modetoggle li a {
  display: block;
  padding: 5px 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
}

.switching .modetoggle .active {
  background: #317ec1;
}

.switching .option_view {
  margin-top: 10px;
  width: 100%;
}

.switching .option_view .item {
  width: 100%;
}

.switching .option_view .item .textInfor {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.switching .option_view .item .textInfor p {
  color: #fff;
  font-size: 12px;
}

.switching .option_view .item .textInfor a {
  color: #fff;
  font-size: 12px;
}

.switching .option_view .item .textInfor .cue {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.switching .option_view .item .textInfor .cue .ul-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.switching .option_view .item .textInfor .cue .ul-signal li {
  font-size: 12px;
  font-weight: bold;
}

.switching .option_view .item .textInfor .cue .ul-signal li a {
  color: #d766dc;
  font-weight: bold;
  white-space: nowrap;
  animation: flicker 3s linear infinite forwards;
  display: inline-block;
}

@keyframes flicker {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.switching .option_view .item .textInfor>p {
  line-height: 22px;
  font-size: 12px;
}

.switching .option_view .item .time_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.switching .option_view .item .time_info li {
  display: flex;
  align-items: center;
  gap: 22px;
}

.switching .option_view .item .time_info li .bj {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #b3eafe;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switching .option_view .item .time_info li img {
  width: 20px;
  height: auto;
}

.switching .option_view .item .time_info li p {
  font-size: 12px;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.switching .option_view .item .time_info .end p {
  color: #dd442f;
}

.switching .option_view .item .time_info .warn p {
  color: #fdde66;
}

.switching .option_view .item .intelligence {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 20px;
}

.switching .option_view .item .intelligence .intelligence_view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.switching .option_view .item .intelligence .intelligence_view .separate {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.switching .option_view .item .intelligence .intelligence_view .separate:last-child {
  grid-column: 1 / span 2;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold {
  display: flex;
  flex-direction: column;
  border: 3px solid #0e5ac1;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold .totic {
  width: 100%;
  background: #124cb7;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold .totic span {
  width: 100%;
  height: 100%;
  border: 1px solid #b3eafe;
  border-bottom: none;
  gap: 5px;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 10px;
  color: #fff;
  box-sizing: border-box;
  font-weight: bold;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold .totic span::before {
  content: '';
  width: 5px;
  height: 15px;
  background: rgba(87, 32, 84, 0.7);
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #b3eafe;
  background: rgba(11, 39, 113, 0.6);
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold ul li {
  background: rgba(21, 30, 135, 0.7);
  font-size: 14px;
  color: #fff;
  padding: 10px 20px;
}

.switching .option_view .item .intelligence .intelligence_view .separate .profit .hold_title::before {
  background: rgba(87, 32, 84, 0.7);
}

.switching .option_view .item .intelligence .intelligence_view .separate .profit ul li {
  background: rgba(87, 32, 84, 0.7);
}

.switching .option_view .item .intelligence .intelligence_view .separate .harmful .hold_title::before {
  background: rgba(79, 90, 142, 0.7);
}

.switching .option_view .item .intelligence .intelligence_view .separate .harmful ul li {
  background: rgba(79, 90, 142, 0.7);
}

.switching .option_view .item .rank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 20px;
}

.switching .option_view .item .rank .linkBox {
  flex: 1;
  overflow: hidden;
}

.switching .option_view .item .rank .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.switching .option_view .item .rank .team .ImageBox {
  width: 60px;
  height: 60px;
  background: #b3eafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switching .option_view .item .rank .team .ImageBox img {
  width: auto;
  height: 45px;
}

.switching .option_view .item .rank .team span {
  white-space: nowrap;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.switching .option_view .item .army {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  align-items: center;
  gap: 10px;
}

.switching .option_view .item .army .team {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.switching .option_view .item .army .team:first-child span {
  text-align: right;
}

.switching .option_view .item .army .team img {
  width: auto;
  height: 26px;
}

.switching .option_view .item .army .team span {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.switching .option_view .item .army .vs {
  text-align: center;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
}

.switching .option_view .item .item_title {
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
  margin-bottom: 10px;
}

.switching .option_view .item .confront {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  border: 3px solid #0e5ac1;
}

.switching .option_view .item .confront .confront_title {
  font-size: 16px;
  user-select: none;
  color: #fff;
  border: 1px solid #b3eafe;
  border-bottom: none;
  white-space: nowrap;
  padding: 5px 10px;
  background: #124cb7;
}

.switching .option_view .item .confront .entrty {
  display: flex;
  flex-direction: column;
  border: 1px solid #b3eafe;
}

.switching .option_view .item .confront .entrty li {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 4fr 1fr;
  padding: 12px;
  border-bottom: 1px solid #335f9b;
  box-sizing: border-box;
}

.switching .option_view .item .confront .entrty li:last-child {
  border-bottom: none;
}

.switching .option_view .item .confront .entrty li time {
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
}

.switching .option_view .item .confront .entrty li .compare {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 30px;
}

.switching .option_view .item .confront .entrty li .compare>a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.switching .option_view .item .confront .entrty li .compare .team {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.switching .option_view .item .confront .entrty li .compare .team img {
  width: 27px;
  height: auto;
}

.switching .option_view .item .confront .entrty li .compare .team p {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
}

.switching .option_view .item .confront .entrty li .compare .team:first-child p {
  text-align: right;
}

.switching .option_view .item .confront .entrty li .compare .vs {
  display: flex;
  align-items: center;
}

.switching .option_view .item .confront .entrty li .compare .vs span {
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
}

.switching .option_view .item .confront .entrty li .specs {
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
}

.switching .option_view .item .external {
  margin-top: 20px;
}

.switching .option_view .item .war {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.switching .option_view .item .war .war_title {
  font-size: 16px;
  user-select: none;
  color: #fff;
  border: 1px solid #b3eafe;
  border-bottom: none;
  white-space: nowrap;
  padding: 5px 10px;
  background: #124cb7;
}

.switching .option_view .item .war .warContent {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.switching .option_view .item .war .warContent .outer {
  width: calc(100% / 2 - 10px);
  display: flex;
  flex-direction: column;
  border: 3px solid #0e5ac1;
}

.switching .option_view .item .war .warContent .outer ul {
  display: flex;
  flex-direction: column;
  border: 1px solid #b3eafe;
}

.switching .option_view .item .war .warContent .outer ul li {
  display: grid;
  align-items: center;
  grid-template-columns: 3fr 2fr 3fr;
  padding: 10px 0;
  border-bottom: 1px solid #335f9b;
}

.switching .option_view .item .war .warContent .outer ul li:last-child {
  border-bottom: none;
}

.switching .option_view .item .war .warContent .outer ul li .teamBox {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.switching .option_view .item .war .warContent .outer ul li .team {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.switching .option_view .item .war .warContent .outer ul li .team img {
  width: auto;
  height: 40px;
}

.switching .option_view .item .war .warContent .outer ul li .team p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #fff;
  width: 100%;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo {
  color: #fff;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox .vs {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 5px;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox .vs span {
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox .vs span:first-child {
  text-align: right;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox .vs span:last-child {
  text-align: left;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox time {
  width: 100%;
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
  color: #fff;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .specs {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}

.switching .option_view .item .war .warContent .outer ul li .teamInfo .specs a {
  color: #fff;
}

.switching .option_view .item .war .warContent .outer .check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.switching .option_view .item .war .warContent .outer .check a {
  white-space: nowrap;
  font-size: 12px;
  color: #7633ff;
}

.bigSwiper {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px 0px;
  padding: 10px 15px;
  box-sizing: border-box;
  user-select: none;
}

.bigSwiper .swiper-slide {
  text-align: center;
}

.bigList {
  padding: 20px;
  margin: 20px 0;
}

.bigList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bigList ul li {
  width: calc(100% / 2 - 10px);
  box-sizing: border-box;
  border: 3px solid #0e5ac1;
  user-select: none;
  background: rgba(11, 39, 113, 0.6);
}

.bigList ul li .liBox {
  width: 100%;
  height: 100%;
  border: 1px solid #b3eafe;
  padding: 10px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 5px;
  box-sizing: border-box;
}

.bigList ul li time,
.bigList ul li a {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.bigList ul li .status {
  text-align: right;
}

.bigList ul li .rank {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bigList ul li .rank .linkBox {
  flex: 1;
  overflow: hidden;
}

.bigList ul li .rank .linkBox:first-child .team {
  text-align: right;
}

.bigList ul li .rank .team {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 14px;
}

.bigList ul li .rank .vs {
  color: #fff;
  font-size: 14px;
}

.show {
  display: block;
}

.hotMatch {
  display: flex;
  flex-direction: column;
  border: 3px solid #0e5ac1;
  background: rgba(11, 39, 113, 0.6);
}

.hotMatch .hotMatch_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hotMatch .hotMatch_title .Img {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotMatch .hotMatch_title .Img img {
  width: 24px;
  height: auto;
}

.hotMatch .hotMatch_title .Img span {
  font-size: 18px;
  color: #ed7d03;
  white-space: nowrap;
}

.hotMatch .hotMatch_title .more {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotMatch .hotMatch_title .more span {
  font-size: 16px;
  color: #ed7d03;
  white-space: nowrap;
}

.hotMatch ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid #b3eafe;
  padding: 20px;
  padding-bottom: 50px;
}

.hotMatch ul li a {
  color: #fff;
  font-size: 14px;
}

.back {
  position: fixed;
  right: 3%;
  top: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  user-select: none;
  z-index: 999;
}

.back .backDom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #61335f, #14317e);
  border-radius: 50%;
}

.back span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  color: #fff;
  font-size: 18px;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px 5px;
  box-sizing: border-box;
  user-select: none;
  box-shadow: rgba(37, 47, 104, 0.1) 0px 2px 2px 0px;
}

.crumbs span {
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crumbs span::before {
  content: '';
  width: 4px;
  height: 12px;
  border-radius: 6px;
  background: #ffffff;
}

.crumbs ul {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  padding-right: 20px;
}

.crumbs ul li {
  display: flex;
  align-items: center;
}

.crumbs ul li a {
  color: #ffffff;
  font-size: 12px;
  white-space: nowrap;
}

.crumbs ul li::after {
  content: '>';
  font-size: 12px;
  color: #ffffff;
  margin: 0 5px;
}

.crumbs ul li:last-child {
  flex: 1;
  overflow: hidden;
}

.crumbs ul li:last-child a {
  color: #da67de;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.crumbs ul li:last-child::after {
  display: none;
}

.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;
  padding: 3px 10px;
  border-radius: 5px;
  border: 3px solid #0e5ac1;
  background: rgba(11, 39, 113, 0.6);
}

.page .pagination li:hover {
  background: linear-gradient(to top, #1a4f88, #213986, #313783);
}

.page .pagination li:hover a {
  color: #da67de;
}

.page .pagination li span,
.page .pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
}

.page .pagination .active {
  background: linear-gradient(to top, #1a4f88, #213986, #313783);
}

.page .pagination .active span {
  color: #da67de;
}

.page .pagination .disabled {
  cursor: pointer;
  user-select: none;
}

.page .pagination .disabled span {
  color: #cdcdcd;
  white-space: nowrap;
}

.page .pagination .omit {
  cursor: default;
  width: auto;
  border: none;
  background: none;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold ul .qb-status-1 {
  color: #a2de68;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold ul .qb-status-2 {
  color: #fdde66;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold ul .qb-status-3 {
  color: #18caf0;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold ul .qb-status-4 {
  color: #a579cf;
}

.switching .option_view .item .intelligence .intelligence_view .separate .hold ul .qb-status-5 {
  color: #c04561;
}

@media screen and (max-width: 1000px) {
  .header .nav .burger {
    display: block;
  }

  .header .nav .select {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    background: rgba(0, 31, 118, 0.7);
    top: 70px;
    z-index: 99;
  }

  .header {
    padding: 0 20px;
  }

  .header .nav .select ul {
    flex-direction: column;
    height: 100%;
  }

  .header .nav .select ul li a {
    width: 100%;
    padding: 20px;
  }

  .header .nav .select ul li {
    width: 100%;
    height: fit-content;
  }

  .header .nav .select ul .active {
    background: none;
  }

  .header .nav .select ul .active a {
    color: #90dbfc;
  }

  .header .nav .select ul li a {
    justify-content: flex-start;
  }

  .main {
    padding: 0 10px;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 96px;
  }

  .index_main {
    padding-top: 97px;
    padding-bottom: 112px;
  }

  .main .horizontal li {
    width: calc(100% / 3 - 15px);
  }

  .main .everyone li {
    width: calc(100% / 3 - 17px);
  }

  .Jump {
    display: none;
  }

  .plating {
    gap: 10px;
  }

  .switching .option_view .item .war .warContent {
    gap: 10px;
  }

  .switching .option_view .item .war .warContent .outer {
    width: calc(100% / 2 - 5px);
  }

  .switching .borderswitching {
    padding: 20px 10px;
  }
}

@media screen and (min-width: 1001px) {
  .header .nav .select {
    height: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0 0.26667rem;
    height: 1.2rem;
  }

  .logo img {
    width: 3.38667rem;
    height: auto;
  }

  .header .nav {
    gap: 0.13333rem;
    border: none;
  }

  .header .nav .burger {
    transform: scale(0.7);
  }

  .header .nav .select {
    top: 1.2rem;
  }

  .header .nav .select ul li a {
    padding: 0.26667rem;
  }

  .main .horizontal li {
    width: calc(100% / 2 - 0.14667rem);
    height: 4.53333rem;
  }

  .main {
    padding: 0 0.13333rem;
    padding-top: 0.53333rem;
    padding-bottom: 1.28rem;
  }

  .index_main {
    padding-top: 1.29333rem;
    padding-bottom: 1.49333rem;
  }

  .main .title {
    margin-bottom: 0.6rem;
  }

  .main .title img {
    width: 7.70667rem;
    height: auto;
  }

  .main .switch_swiper .mySwiper .swiper-slide a {
    font-size: 0.34667rem;
  }

  .main .switch_swiper {
    padding: 0 0.52rem;
  }

  .main .switch_swiper .next img,
  .main .switch_swiper .prev img {
    width: 0.34667rem;
  }

  .main .horizontal {
    margin-top: 0.53333rem;
    gap: 0.29333rem;
  }

  .main .horizontal li .jamb .fine {
    gap: 0.26667rem;
    height: 1.10667rem;
  }

  .main .horizontal li .jamb .fine .category {
    width: 0.58667rem;
  }

  .main .horizontal li .jamb .fine .category::after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    left: 0;
    bottom: -0.13333rem;
    border-left: 0.30667rem solid #fff;
    border-right: 0.30667rem solid #fff;
    border-bottom: 0.2rem solid transparent;
  }

  .main .horizontal li .jamb .fine .category img {
    width: 0.46667rem;
  }

  .main .horizontal li .jamb .fine .begin {
    font-size: 0.32rem;
  }

  .main .horizontal li .jamb .fine .timeInfo {
    font-size: 0.32rem;
  }

  .main .horizontal li .jamb .rank {
    padding: 0.25333rem 0.06667rem;
    gap: 0.06667rem;
  }

  .main .horizontal li .jamb .rank .linkBox .team img {
    width: auto;
    height: 0.74667rem;
  }

  .main .horizontal li .jamb .rank .linkBox .team span {
    font-size: 0.32rem;
  }

  .main .horizontal li .jamb .rank .vs .score {
    gap: 0.08rem;
  }

  .main .horizontal li .jamb .rank .vs .score span {
    width: 0.53333rem;
    height: 0.6rem;
    font-size: 0.4rem;
  }

  .main .horizontal li .jamb .rank .vs {
    gap: 0.2rem;
  }

  .main .horizontal li .jamb .rank .vs .status {
    width: 1.65333rem;
    height: 0.6rem;
    font-size: 0.32rem;
  }

  .main .horizontal li .jamb .rank .vs .status a {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main .horizontal li .jamb .countdown a {
    font-size: 0.32rem;
  }

  .main .horizontal li .jamb .rank .vs .score {
    justify-content: center;
  }

  .main .horizontal li .jamb .countdown {
    font-size: 0.32rem;
  }

  .main .horizontal li .jamb .fine .timeInfo time:nth-child(2) {
    font-size: 0.34667rem;
  }

  .main .match_show {
    margin-bottom: 1.33333rem;
  }

  .main .various {
    margin-top: 0.6rem;
    gap: 0.26667rem;
  }

  .main .various li {
    width: 100%;
  }

  .main .various li .linkBox figure figcaption {
    padding: 0.13333rem;
  }

  .main .various li .linkBox figure {
    gap: 0.13333rem;
  }

  .main .various li .linkBox figure .Image {
    height: 3.28rem;
  }

  .main .various li .linkBox figure figcaption article span {
    font-size: 0.34667rem;
  }

  .main .various li .linkBox figure figcaption article {
    gap: 0.13333rem;
  }

  .main .various li .linkBox figure figcaption article p {
    font-size: 0.32rem;
    line-height: 0.45333rem;
  }

  .main .various li .linkBox figure figcaption .introduce span,
  .main .various li .linkBox figure figcaption .introduce time {
    font-size: 0.32rem;
  }

  .main .recomNews {
    margin-bottom: 1.61333rem;
  }

  .main .everyone {
    gap: 0.33333rem;
    margin-top: 0.6rem;
  }

  .main .everyone li {
    width: calc(100% / 2 - 0.17333rem);
    height: 5.44rem;
  }

  .main .everyone li .linkBox figure .cover {
    height: 3.50667rem;
  }

  .main .everyone li .linkBox figure figcaption {
    padding-top: 0.18667rem;
  }

  .main .everyone li .linkBox figure figcaption p {
    padding: 0 0.13333rem;
    font-size: 0.32rem;
  }

  .main .everyone li .linkBox figure figcaption .bright {
    height: 0.66667rem;
    padding: 0 0.10667rem;
  }

  .main .everyone li .linkBox figure figcaption .bright span,
  .main .everyone li .linkBox figure figcaption .bright time {
    font-size: 0.32rem;
  }

  .main .everyone li .linkBox figure .cover .play {
    width: 0.86667rem;
    height: 0.86667rem;
  }

  .main .everyone li .linkBox figure .cover time {
    right: 0.06667rem;
    bottom: 0.06667rem;
    padding: 0.06667rem 0.10667rem;
    border-radius: 0.2rem;
    font-size: 0.32rem;
  }

  .main .recomVideo {
    margin-bottom: 1.41333rem;
  }

  .main .standings .billboard {
    margin-top: 0.70667rem;
    gap: 0.32rem;
  }

  .main .standings .billboard .ball {
    width: 100%;
  }

  .main .standings .billboard .ball .table li {
    padding: 0.13333rem 0.2rem;
  }

  .main .standings .billboard .ball .table li:first-child span {
    font-size: 0.34667rem;
  }

  .main .standings .billboard .ball .table li .rank {
    font-size: 0.42667rem;
  }

  .main .standings .billboard .ball .table li span {
    font-size: 0.32rem;
  }

  .main .standings .billboard .ball .table li .linkBox .team {
    gap: 0.13333rem;
  }

  .main .standings .billboard .ball .table li .linkBox .team img {
    width: 0.69333rem;
  }

  .main .standings .billboard .ball .table li .linkBox .team span {
    font-size: 0.34667rem;
  }

  .main .standings .billboard .ball .ball_title {
    height: 0.8rem;
    font-size: 0.34667rem;
  }

  .footer {
    padding: 0.2rem;
  }

  .footer .content ul li a {
    font-size: 0.32rem;
    white-space: nowrap;
  }

  .footer .content ul li::after {
    margin: 0 0.10667rem;
  }

  .footer .content p {
    font-size: 0.32rem;
    line-height: 0.45333rem;
  }

  .footer .content p .svgCode {
    height: 0.28rem;
  }

  .crumbs span {
    gap: 0.13333rem;
  }

  .crumbs {
    gap: 0.13333rem;
    margin-bottom: 0.26667rem;
    padding: 0.13333rem 0.06667rem;
  }

  .crumbs ul li::after {
    margin: 0 0.06667rem;
  }

  .page .pagination {
    gap: 0.13333rem;
  }

  .page .pagination li {
    padding: 0.06667rem 0.13333rem;
    border-radius: 0.06667rem;
    border-width: 0.04rem;
  }

  .page .pagination li span,
  .page .pagination li a {
    font-size: 0.34667rem;
  }

  .page {
    padding: 0.26667rem;
    margin-top: 0.26667rem;
  }

  .outside .relatedVideo .every li {
    width: 100%;
  }

  .outside .relatedNews .every li {
    width: 100%;
  }

  .outside .relatedNews .every {
    padding: 0.26667rem;
    gap: 0.2rem;
  }

  .anotherTitle {
    height: 0.8rem;
    padding: 0 0.13333rem;
  }

  .anotherTitle strong {
    font-size: 0.34667rem;
  }

  .anotherTitle .more span {
    font-size: 0.32rem;
  }

  .anotherTitle .more {
    gap: 0.06667rem;
  }

  .outside .relatedNews .every li .linkBox {
    gap: 0.13333rem;
  }

  .outside .relatedNews .every li .linkBox .category {
    padding: 0.06667rem 0.13333rem;
    font-size: 0.32rem;
  }

  .outside .relatedNews .every li .linkBox p {
    font-size: 0.32rem;
  }

  .outside .relatedNews .every li .linkBox time {
    font-size: 0.32rem;
  }

  .back {
    width: 1.06667rem;
    height: 1.06667rem;
  }

  .back span {
    font-size: 0.37333rem;
  }

  .outside .relatedVideo .every {
    padding: 0.26667rem;
    gap: 0.26667rem;
  }

  .outside .relatedVideo .every li figure {
    gap: 0.13333rem;
  }

  .outside .relatedVideo .every li figure .cover {
    height: 2.45333rem;
  }

  .outside .relatedVideo .every li figure .cover .play {
    width: 0.8rem;
    height: 0.8rem;
  }

  .outside .relatedVideo .every li figure .cover time {
    right: 0.06667rem;
    bottom: 0.06667rem;
    font-size: 0.32rem;
    border-radius: 0.2rem;
    padding: 0.06667rem 0.13333rem;
  }

  .outside .relatedVideo .every li figure figcaption {
    height: 2.45333rem;
    padding-bottom: 0.13333rem;
  }

  .outside .relatedVideo .every li figure figcaption p {
    font-size: 0.32rem;
    line-height: 0.45333rem;
  }

  .outside .relatedVideo .every li figure figcaption .bright span,
  .outside .relatedVideo .every li figure figcaption .bright time {
    font-size: 0.32rem;
  }

  .outside .relatedVideo {
    margin-top: 1.37333rem;
  }

  .outside .relatedNews {
    margin-top: 1.42667rem;
  }

  .plating {
    flex-direction: column;
  }

  .plating .core {
    width: 100%;
  }

  .plating .aside .up_video ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .plating .aside .up_video ul {
    gap: 0.26667rem;
  }

  .plating .aside .up_video ul li {
    width: calc(100% / 2 - 0.13333rem);
  }

  .plating .core .essay .neiessay {
    padding: 0.26667rem;
  }

  .plating .core .essay h1 {
    font-size: 0.4rem;
  }

  .plating .core .essay .clearness {
    margin: 0.2rem 0;
    gap: 0.26667rem;
  }

  .plating .core .essay .clearness time {
    font-size: 0.32rem;
  }

  .plating .core .essay .clearness .cat {
    gap: 0.06667rem;
  }

  .plating .core .essay .clearness .cat .iconfont {
    font-size: 0.37333rem;
  }

  .plating .core .essay .clearness .cat span {
    font-size: 0.32rem;
  }

  .plating .core .essay .forward {
    margin-bottom: 0.2rem;
  }

  .plating .core .essay .screen {
    height: 5.4rem;
  }

  .plating .core .essay .screen .play {
    width: 1.4rem;
    height: 1.4rem;
  }

  .plating .core .essay .eventName {
    margin: 0.26667rem 0;
    gap: 0.2rem;
  }

  .plating .core .essay .switchbar li {
    width: 100%;
  }

  .plating .core .essay .switchbar {
    flex-wrap: wrap;
  }

  .plating .core .essay .eventName ul {
    gap: 0.2rem;
  }

  .plating .core .essay .eventName ul li {
    font-size: 0.32rem;
  }

  .plating .core .essay .eventName>span,
  .plating .core .essay .eventName p {
    font-size: 0.32rem;
  }

  .plating .core .essay .switchbar {
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

  .plating .core .essay .switchbar li {
    gap: 0.13333rem;
  }

  .plating .core .essay .switchbar li span {
    font-size: 0.32rem;
  }

  .plating .core .essay .switchbar li a {
    font-size: 0.32rem;
  }

  .plating .core .visual ul {
    padding: 0.26667rem;
    gap: 0.21333rem;
  }

  .plating .core .visual ul li {
    width: calc(100% / 2 - 0.10667rem);
  }

  .plating .core .visual ul li figure {
    height: 4.37333rem;
    gap: 0.14667rem;
  }

  .plating .core .visual ul li figure .cover {
    height: 2.46667rem;
  }

  .plating .core .visual ul li figure .cover .play {
    width: 0.66667rem;
    height: 0.66667rem;
  }

  .plating .core .visual ul li figure .cover .bofang {
    left: 0.06667rem;
    bottom: 0.06667rem;
    font-size: 0.32rem;
  }

  .plating .core .visual ul li figure .cover time {
    right: 0.06667rem;
    bottom: 0.06667rem;
    font-size: 0.32rem;
    padding: 0.04rem 0.13333rem;
    border-radius: 0.12rem;
  }

  .plating .core .visual ul li figure figcaption p {
    font-size: 0.32rem;
    line-height: 0.45333rem;
  }

  .plating .core .visual ul li figure figcaption .information .category {
    border-width: 0.04rem;
    font-size: 0.32rem;
    padding: 0.04rem 0.10667rem;
  }

  .plating .core .visual ul li figure figcaption .information time {
    font-size: 0.32rem;
  }

  .plating .aside .suggestnews ul {
    gap: 0.2rem;
    padding-bottom: 0.4rem;
  }

  .plating .aside .suggestnews ul li figure {
    height: 3.53333rem;
  }

  .plating .aside .suggestnews ul li figure figcaption {
    left: 0.12rem;
    top: 0.12rem;
    font-size: 0.32rem;
    line-height: 0.45333rem;
  }

  .plating .aside .suggestnews ul li figure .rank {
    padding: 0.08rem 0.26667rem;
    font-size: 0.45333rem;
  }

  .plating .aside .suggestnews ul li .linkBox p {
    font-size: 0.32rem;
    line-height: 0.32rem;
  }

  .plating .aside .suggestnews ul li .linkBox {
    gap: 0.13333rem;
  }

  .plating .aside .suggestnews ul li .linkBox .rank {
    width: 0.64rem;
    height: 0.64rem;
    font-size: 0.34667rem;
  }

  .plating .aside .up_video ul li figure {
    height: 3.44rem;
  }

  .plating .aside .up_video ul li figure .cover {
    height: 2.25333rem;
  }

  .plating .aside .up_video ul li figure .cover .play {
    width: 0.73333rem;
    height: 0.73333rem;
  }

  .plating .aside .up_video ul li figure .cover .bofang {
    left: 0.06667rem;
    bottom: 0.06667rem;
    font-size: 0.32rem;
  }

  .plating .aside .up_video ul li figure .cover time {
    right: 0.06667rem;
    bottom: 0.06667rem;
    font-size: 0.32rem;
  }

  .plating .aside .up_video ul li figure figcaption p {
    font-size: 0.32rem;
    line-height: 0.42667rem;
  }

  .plating .core .essay .article {
    gap: 0.26667rem;
  }

  .plating .core .essay .article p {
    font-size: 0.32rem;
    line-height: 0.48rem;
    text-indent: 0.4rem;
  }

  .plating .core .essay .article img {
    width: 100% !important;
    border-radius: 0.2rem;
    margin: 0;
  }

  .switching .modetoggle {
    gap: 0.50667rem;
  }

  .switching .modetoggle li a {
    padding: 0.13333rem 0.2rem;
    font-size: 0.32rem;
  }

  .switching .option_view .item .rank {
    padding: 0 0.26667rem;
    gap: 0.26667rem;
  }

  .biggame {
    margin-top: 0.26667rem;
    height: 5.50667rem;
  }

  .biggame .source {
    padding: 0.10667rem;
  }

  .biggame .source span,
  .biggame .source a {
    font-size: 0.32rem;
  }

  .biggame .bisaibox {
    padding: 0.26667rem;
    gap: 0.33333rem;
  }

  .biggame .bisaibox .video_competition_team .competition_team_img {
    height: 1.50667rem;
  }

  .biggame .bisaibox .video_competition_team span {
    font-size: 0.34667rem;
  }

  .biggame .bisaibox .vs_info .vs_center .status {
    gap: 0.10667rem;
    padding: 0.06667rem 0.13333rem;
    font-size: 0.34667rem;
  }

  .biggame .bisaibox .vs_info .vs_center {
    gap: 0.10667rem;
  }

  .biggame .bisaibox .vs_info .vs_center .specification {
    font-size: 0.34667rem;
  }

  .biggame .bisaibox .vs_info .vs_center .vs .divide {
    font-size: 0.4rem;
  }

  .biggame .bisaibox .vs_info .vs_center .vs span {
    font-size: 0.4rem;
  }

  .biggame .bisaibox .vs_info .vs_center time,
  .biggame .bisaibox .vs_info .vs_center span {
    font-size: 0.34667rem;
  }

  .switching .option_view .item .textInfor {
    gap: 0.13333rem;
    margin-top: 0.26667rem;
  }

  .switching .option_view .item .textInfor>p {
    font-size: 0.32rem;
    line-height: 0.42667rem;
  }

  .switching .option_view .item .textInfor p {
    font-size: 0.32rem;
  }

  .switching .option_view .item .textInfor .cue .ul-signal {
    gap: 0.13333rem;
  }

  .switching .option_view .item .textInfor .cue .ul-signal li {
    font-size: 0.32rem;
  }

  .switching .option_view .item .time_info {
    gap: 0.26667rem;
  }

  .switching .option_view .item .time_info li {
    gap: 0.29333rem;
  }

  .switching .option_view .item .time_info li .bj {
    width: 0.64rem;
    height: 0.64rem;
  }

  .switching .option_view .item .time_info li img {
    width: 0.4rem;
  }

  .switching .option_view .item .time_info li p {
    padding: 0.13333rem 0.2rem;
    border-radius: 0.13333rem;
    font-size: 0.32rem;
  }

  .switching .option_view .item .intelligence .intelligence_view {
    display: flex;
    flex-direction: column;
  }

  .switching .option_view .item .intelligence {
    gap: 0.34667rem;
  }

  .switching .option_view .item .rank .team {
    gap: 0.2rem;
  }

  .switching .option_view .item .rank .team .ImageBox {
    width: 0.93333rem;
    height: 0.93333rem;
  }

  .switching .option_view .item .rank .team .ImageBox img {
    height: 0.73333rem;
  }

  .switching .option_view .item .rank .team span {
    font-size: 0.34667rem;
  }

  .switching .option_view .item .intelligence .intelligence_view .separate .hold .totic span {
    padding: 0.06667rem 0.13333rem;
    font-size: 0.34667rem;
  }

  .switching .option_view .item .intelligence .intelligence_view .separate .hold ul {
    padding: 0.26667rem 0.13333rem;
    gap: 0.13333rem;
  }

  .switching .option_view .item .intelligence .intelligence_view .separate .hold ul li {
    padding: 0.13333rem 0.26667rem;
    font-size: 0.34667rem;
  }

  .switching .option_view .item .confront .confront_title {
    font-size: 0.34667rem;
    padding: 0.06667rem 0.13333rem;
  }

  .switching .option_view .item .confront .entrty li {
    padding: 0.16rem;
  }

  .switching .option_view .item .confront .entrty li time {
    font-size: 0.29333rem;
  }

  .switching .option_view .item .confront .entrty li .compare {
    gap: 0.2rem;
  }

  .switching .option_view .item .confront .entrty li .compare .team {
    gap: 0.16rem;
  }

  .switching .option_view .item .confront .entrty li .compare .team img {
    width: 0.49333rem;
  }

  .switching .option_view .item .confront .entrty li .specs {
    font-size: 0.29333rem;
  }

  .switching .option_view .item .confront .entrty li .compare .team p {
    font-size: 0.32rem;
  }

  .switching .option_view .item .confront .entrty li .compare .vs span {
    font-size: 0.32rem;
  }

  .switching .option_view .item .war .warContent .outer ul li {
    padding: 0.13333rem;
    gap: 0.13333rem;
    box-sizing: border-box;
  }

  .switching .option_view .item .war .warContent {
    gap: 0.13333rem;
  }

  .switching .option_view .item .war .war_title {
    font-size: 0.34667rem;
    padding: 0.06667rem 0.13333rem;
  }

  .switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox {
    gap: 0.06667rem;
  }

  .switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox .vs {
    gap: 0.06667rem;
  }

  .switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox .vs span {
    font-size: 0.32rem;
  }

  .switching .option_view .item .war .warContent .outer ul li .teamInfo .specs {
    font-size: 0.32rem;
  }

  .switching .option_view .item .war .warContent .outer ul li .team img {
    height: 0.66667rem;
  }

  .switching .option_view .item .war .warContent .outer ul li .team p {
    font-size: 0.32rem;
  }

  .switching .option_view .item .war .warContent .outer ul li .teamInfo .linkBox time {
    font-size: 0.32rem;
  }

  .switching .option_view .item .war .warContent .outer {
    width: calc(100% / 2 - 0.06667rem);
  }

  .plating .aside {
    gap: 0.26667rem;
  }

  .bigList {
    padding: 0.26667rem 0;
    margin: 0.26667rem 0;
  }

  .bigList ul li {
    width: 100%;
  }

  .bigList ul {
    gap: 0.26667rem;
  }

  .bigList ul li .liBox {
    padding: 0.2rem;
  }

  .bigList ul li time,
  .bigList ul li a {
    font-size: 0.32rem;
  }

  .bigList ul li .rank {
    gap: 0.06667rem;
  }

  .bigList ul li .rank .team {
    font-size: 0.32rem;
  }

  .bigList ul li .rank .vs {
    font-size: 0.32rem;
  }

  .hotMatch ul {
    gap: 0.2rem;
    padding: 0.26667rem;
    padding-bottom: 0.66667rem;
  }

  .hotMatch ul li a {
    font-size: 0.32rem;
  }
}
.infotextkey {font-size:14px;font-weight:bold;background: #113bb3;color: #fff;}