@charset "UTF-8";

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

.crumbs span {
  font-size: 16px;
  color: #4d5d6f;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crumbs span::before {
  content: "";
  width: 4px;
  height: 12px;
  border-radius: 6px;
  background: #4d5d6f;
}

.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: #4d5d6f;
  font-size: 16px;
  white-space: nowrap;
}

.crumbs ul li::after {
  content: ">";
  font-size: 16px;
  color: #333;
  margin: 0 5px;
}

.crumbs ul li:last-child {
  flex: 1;
  overflow: hidden;
}

.crumbs ul li:last-child a {
  color: #43a8fe;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
}

.crumbs ul li:last-child::after {
  display: none;
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page .pagination {
  display: flex;
  gap: 10px;
}

.page .pagination li {
  width: 38px;
  height: 38px;
  border: 1px solid #eeeeee;
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
}

.page .pagination li span,
.page .pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52524e;
  font-size: 14px;
}

.page .pagination .active {
  background: #8dcffe;
}

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

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

.page .pagination .disabled span {
  color: #354455;
}

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

@media screen and (max-width: 750px) {
  .page .pagination {
    gap: 1.33333vw;
  }

  .page .pagination li {
    width: 6vw;
    height: 6vw;
  }

  .page .pagination li span,
  .page .pagination li a {
    font-size: 1.6vw;
  }

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

  .mian .crumbs {
    margin-bottom: 2.66667vw;
  }

  .mian .crumbs span {
    font-size: 2.13333vw;
    gap: 1.33333vw;
  }

  .crumbs span::before {
    width: 0.53333vw;
    height: 1.6vw;
    border-radius: 0.8vw;
  }

  .crumbs ul li a {
    font-size: 2.13333vw;
  }

  .crumbs ul li::after {
    font-size: 2.13333vw;
    margin: 0 0.66667vw;
  }

  .crumbs ul {
    padding-right: 2.66667vw;
  }

  .page .pagination li {
    border-radius: 1.33333vw;
  }
}

/* 全局样式修改 */
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;
  font-family: sm, "Microsoft YaHei", Arial, Helvetica, sans-serif;
}

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

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

textarea {
  font-family: "微软雅黑";
}

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;
}

input,
select {
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
}

i {
  font-style: normal;
}

a {
  text-decoration: none;
}

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;
}

.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-color: rgba(50, 50, 50, 0.3);
}

::-webkit-scrollbar-track {
  border-radius: 1em;
  background-color: #fff;
}

body {
  font-family: "微软雅黑";
}

figure {
  margin: 0;
}

.mian {
  display: block;
}

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

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

@keyframes Boxrotate {
  100% {
    transform: rotate(360deg);
  }
}

header {
  height: 97px;
  background: #dde8f8;
  position: relative;
  box-shadow: 0px 8px 5px rgba(136, 179, 225, 0.5);
  z-index: 99;
}

header .nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 20px;
  box-sizing: border-box;
}

header .nav .logo img {
  width: auto;
  height: 42px;
}

header .nav .select {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 10px;
  user-select: none;
}

header .nav .select li {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 5px solid transparent;
  padding: 0 14px;
  box-sizing: border-box;
  box-sizing: border-box;
}

header .nav .select li a {
  white-space: nowrap;
  color: #354455;
  font-weight: bold;
  font-size: 16px;
}

header .nav .select .active {
  border-color: #179dff;
}

header .nav .select .active a {
  color: #179dff;
}

header .nav .rightBox {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .nav .rightBox .search {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

header .nav .rightBox .search .inputBox {
  position: relative;
  width: 256px;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

header .nav .rightBox .search .inputBox span {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: -1;
  background: #30a7fe;
  animation: Boxrotate 3s infinite linear alternate;
  display: none;
}

header .nav .rightBox .search .inputBox input {
  position: relative;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  box-sizing: border-box;
  border: 1px solid #fbfbfb;
  outline: none;
  background: #f3f3f3;
  box-sizing: border-box;
}

header .nav .rightBox .search .inputBox input:focus+span {
  display: block;
}

header .nav .rightBox .search .btn {
  width: 45px;
  height: 45px;
  background: #4fbaf4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #43b1fe;
  border-top: 1px solid #43b1fe;
  border-right: 2px solid #1d7be7;
  border-bottom: 2px solid #1d7be7;
  cursor: pointer;
}

header .nav .rightBox .search .btn .iconfont {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

header .nav .rightBox .search .btn:hover {
  border-right: 1px solid #43b1fe;
  border-bottom: 1px solid #43b1fe;
  border-left: 3px solid #1d7be7;
  border-top: 3px solid #1d7be7;
}

header .nav .rightBox .menu {
  display: none;
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;
  height: 30px;
  cursor: pointer;
  display: none;
}

header .nav .rightBox .menu span {
  width: 100%;
  height: 10%;
  background: #fff;
}

header .nav .rightBox .menu::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 10%;
  background: #fff;
  transition: all 0.29s cubic-bezier(0, 0, 0, 1);
}

header .nav .rightBox .menu::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 10%;
  background: #fff;
  transition: all 0.29s cubic-bezier(0, 0, 0, 1);
}

header .nav .rightBox .hide span {
  display: none;
}

header .nav .rightBox .hide::after {
  top: 50%;
  left: 58%;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: bottom left;
}

header .nav .rightBox .hide::before {
  top: 53%;
  left: 50%;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: top left;
}

.footer {
  width: 100%;
  height: auto;
  background: #354455;
  padding: 80px 0;
}

.footer .footer_box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.footer .friendship {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer .friendship span {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .friendship ul {
  display: flex;
  overflow-x: auto;
}

.footer .friendship ul li {
  display: flex;
  align-items: center;
}

.footer .friendship ul li::after {
  content: "";
  height: 17px;
  width: 2px;
  background: #fff;
  margin: 0 10px;
}

.footer .friendship ul li:last-child::after {
  display: none;
}

.footer .friendship ul li a {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
}

.footer .regard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer .regard p {
  color: #fff;
}

.footer .regard a {
  color: #fff;
  font-size: 14px;
}

@keyframes swivel {
  to {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
  }
}

@keyframes downward {
  0% {
    transform: translateY(-150px);
  }

  100% {
    transform: translateY(0);
  }
}

.mian {
  background: url(../public/img/bj.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding-top: 20px;
  padding-bottom: 94px;
}

.mian .course {
  position: relative;
  display: flex;
  height: 146px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
}

.mian .course .time_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mian .course .time_info time {
  font-size: 12px;
  color: #354455;
}

.mian .course .rank {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
}

.mian .course .rank>a {
  overflow: hidden;
  display: flex;
  width: 100%;
}

.mian .course .rank .team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  overflow: hidden;
}

.mian .course .rank .team img {
  width: 54px;
  height: 53px;
  user-select: none;
}

.mian .course .rank .team figcaption {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #354455;
  text-align: center;
}

.mian .course .rank .rank_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mian .course .rank .rank_info .vs {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 5px;
}

.mian .course .rank .rank_info .vs span {
  text-align: center;
  font-size: 18px;
  color: #354455;
}

.mian .course .rank .rank_info .vs span:first-child,
.mian .course .rank .rank_info .vs span:last-child {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
}

.mian .course .rank .rank_info .status {
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  color: #626f7d;
}

.mian .course .rank .rank_info .nba {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #626f7d;
}

.mian .course .rank .rank_info .nba a {
  color: #626f7d;
}

.mian .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 55px;
  margin-top: 60px;
}

.mian .title span {
  font-size: 50px;
  color: #179dff;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.mian .title img {
  width: 510px;
  height: 16px;
}

.mian .newsArrange {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
}

.mian .newsArrange li {
  width: calc(100% / 2 - 21px);
  height: 107px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  border-radius: 10px;
}

.mian .newsArrange li .linkBox {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  overflow: hidden;
}

.mian .newsArrange li .linkBox img {
  width: 48px;
  height: 48px;
  animation: swivel 3s linear infinite;
}

.mian .newsArrange li .linkBox span {
  font-size: 16px;
  color: #354455;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
}

.mian .newsArrange li .linkBox .news_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  overflow: hidden;
}

.mian .newsArrange li .linkBox .news_text time {
  font-size: 12px;
  white-space: nowrap;
  color: #495564;
  width: 100%;
  text-align: right;
}

.mian .videotabulation {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
}

.mian .videotabulation li {
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  width: calc(100% / 3 - 17px);
  height: 205px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.mian .videotabulation li:hover figure .cover {
  transform: scale(1.2);
}

.mian .videotabulation li figure {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mian .videotabulation li figure .cover {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.mian .videotabulation li figure .brief {
  position: absolute;
  left: 0;
  bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  box-sizing: border-box;
}

.mian .videotabulation li figure .belong {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  height: 24px;
  background: #eaeef6;
  white-space: nowrap;
  font-size: 14px;
  color: #179dff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mian .videotabulation li figure time {
  position: absolute;
  left: 8px;
  top: 10px;
  font-size: 12px;
  color: #fff;
}

.mian .videotabulation li figure .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 43px;
}

.mian .videotabulation li figure .play img {
  width: 100%;
  height: 100%;
}

.index_mian {
  background: url(../public/img/index_bj.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding-bottom: 200px;
}

.index_mian .index_swpier {
  user-select: none;
  height: 707px;
  padding: 0 20px;
  box-sizing: border-box;
}

.index_mian .index_swpier .swiper {
  width: 100%;
  height: 100%;
}

.index_mian .index_swpier img {
  width: 100%;
  height: 100%;
  animation: downward 0.5s linear;
}

.index_mian .index_swpier .swiper-pagination-bullet {
  width: 19px;
  height: 19px;
  background: #354455;
  opacity: 1;
  margin: 0 !important;
}

.index_mian .index_swpier .swiper-pagination-bullet-active {
  position: relative;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  border: 1px solid #23a2fe;
  background: transparent;
}

.index_mian .index_swpier .swiper-pagination-bullet-active::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 19px;
  height: 19px;
  background: #23a2fe;
  border-radius: 50%;
}

.index_mian .index_swpier .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  bottom: 55px;
}

.index_mian .contest_swiper {
  position: relative;
  box-sizing: border-box;
}

.index_mian .contest_swiper .swiper {
  position: unset;
  width: 100%;
  height: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.index_mian .contest_swiper .swiper .swiper-button-next:after,
.index_mian .contest_swiper .swiper .swiper-button-prev:after {
  display: none;
}

.index_mian .contest_swiper .swiper .swiper-button-next,
.index_mian .contest_swiper .swiper .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_mian .contest_swiper .swiper .swiper-button-next .iconfont,
.index_mian .contest_swiper .swiper .swiper-button-prev .iconfont {
  font-size: 20px;
  font-size: 60px;
}

.index_mian .contest_swiper .swiper .swiper-button-prev .iconfont {
  transform: rotate(180deg);
}

.index_mian .contest_swiper .swiper .iconfont {
  background-image: linear-gradient(45deg,
      #8dc5fb 20%,
      #66b4ff 60%,
      #8dc5fb 20%);
  /* 定义渐变颜色 */
  -webkit-background-clip: text;
  /* 将背景剪裁为文字 */
  background-clip: text;
  color: transparent;
  /* 隐藏文字颜色 */
}

.index_mian .contest_swiper>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.index_mian .contest_swiper>ul>li {
  width: calc(100% / 2 - 10px);
}

.index_mian .newsrecommend {
  height: auto;
}

.index_mian .hotmatch .shift {
  width: 100%;
  display: flex;
  align-items: center;
}

.index_mian .hotmatch .shift li {
  width: calc(100% / 3);
  height: 65px;
  background: url(../public/img/select.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.index_mian .hotmatch .shift .active {
  background: url(../public/img/select_active.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.index_mian .hotmatch .videoview {
  padding: 20px;
  box-sizing: border-box;
  margin-top: 30px;
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
}

.index_mian .hotmatch .videoview .visual {
  position: relative;
  height: 114px;
  padding: 0 55px;
  margin-bottom: 20px;
}

.index_mian .hotmatch .videoview .visual .swiper {
  position: unset;
  width: 100%;
  height: 100%;
}

.index_mian .hotmatch .videoview .visual .swiper .swiper-slide {
  border: 1px solid #aabccc;
}

.index_mian .hotmatch .videoview .visual .swiper img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.index_mian .hotmatch .videoview .visual .swiper .active {
  border: 3px solid #179dff;
  position: relative;
}

.index_mian .hotmatch .videoview .visual .swiper .swiper-button-next,
.index_mian .hotmatch .videoview .visual .swiper .swiper-button-prev {
  width: 41px;
  height: 41px;
  border: 3px solid #66b4ff;
  border-radius: 50%;
}

.index_mian .hotmatch .videoview .visual .swiper .swiper-button-next {
  right: 0;
}

.index_mian .hotmatch .videoview .visual .swiper .swiper-button-prev {
  left: 0;
}

.index_mian .hotmatch .videoview .visual .swiper .swiper-button-next:after,
.index_mian .hotmatch .videoview .visual .swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.index_mian .hotmatch .videoview .bigScreen {
  position: relative;
  width: 100%;
  height: 425px;
}

.index_mian .hotmatch .videoview .bigScreen figure {
  width: 100%;
  height: 100%;
}

.index_mian .hotmatch .videoview .bigScreen figure .cover {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.index_mian .hotmatch .videoview .bigScreen figure .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 63px;
  height: 77px;
}

.index_mian .hotmatch .videoview .bigScreen figure .play img {
  width: 100%;
  height: 100%;
}

.index_mian .hotmatch .videoview .bigScreen figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 18px;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
}

.index_mian .thecharts .thechartsBox {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  align-items: center;
  width: 100%;
  height: 65px;
  text-align: center;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox span {
  font-size: 16px;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox .position {
  background: url(../public/img/player4.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 29px;
  height: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox .people {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  gap: 10px;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox .people img {
  width: auto;
  height: 44px;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox .people figcaption {
  flex: 1;
  overflow: hidden;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox .people article {
  width: 100%;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox .people article span {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox .people article p {
  text-align: left;
  font-size: 12px;
  color: #57b1fc;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(2) .position {
  background: url(../public/img/player1.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 36px;
  height: 29px;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(3) .position {
  background: url(../public/img/player2.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 36px;
  height: 29px;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(4) .position {
  background: url(../public/img/player3.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 36px;
  height: 29px;
}

.index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(4) .position {
  width: 37px;
  height: 43px;
}

.index_mian .thecharts .thechartsBox .seniority .thead {
  height: 35px;
  background: rgba(201, 218, 241, 0.5);
}

.index_mian .thecharts .thechartsBox .seniority .thead span {
  font-weight: bold;
}

.index_mian .thecharts .thechartsBox .seniority .thead .qiuyuan {
  text-align: left;
  padding-left: 45px;
}

.index_mian .thecharts .thechartsBox .player {
  width: 50%;
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.index_mian .thecharts .thechartsBox .player .basketfoot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
}

.index_mian .thecharts .thechartsBox .player .basketfoot li {
  padding: 0 10px;
  border-bottom: 3px solid transparent;
  font-size: 24px;
  color: #354455;
  font-weight: bold;
  cursor: pointer;
}

.index_mian .thecharts .thechartsBox .player .basketfoot .active {
  border-color: #179dff;
  color: #179dff;
}

.index_mian .thecharts .thechartsBox .player .subclass {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 24px;
  margin-bottom: 14px;
}

.index_mian .thecharts .thechartsBox .player .subclass li {
  padding: 0 7px;
  box-sizing: border-box;
  font-size: 18px;
  color: #354455;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.index_mian .thecharts .thechartsBox .player .subclass .active {
  color: #32a7fd;
  border-color: #32a7fd;
}

.index_mian .thecharts .thechartsBox .group {
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.index_mian .thecharts .thechartsBox .group .billboard {
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.index_mian .thecharts .thechartsBox .group .billboard .topic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.index_mian .thecharts .thechartsBox .group .billboard .topic img {
  width: 32px;
  height: 32px;
}

.index_mian .thecharts .thechartsBox .group .billboard .topic span {
  font-size: 24px;
  font-weight: bold;
  color: #354455;
}

.index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox {
  height: 53px;
}

.index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox .position {
  width: 25px;
  height: 29px;
  background: url(../public/img/group4.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox .people img {
  width: auto;
  height: 35px;
}

.index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox:nth-child(2) .position {
  width: 42px;
  height: 27px;
  background: url(../public/img/group1.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox:nth-child(3) .position {
  width: 42px;
  height: 27px;
  background: url(../public/img/group2.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox:nth-child(4) .position {
  width: 42px;
  height: 27px;
  background: url(../public/img/group3.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.mian .bottomside {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 85px;
}

.mian .bottomside .bottomside_title {
  text-align: center;
  margin-bottom: 23px;
}

.mian .bottomside .bottomside_title span {
  font-size: 24px;
  font-weight: bold;
}

.mian .bottomside .populartags {
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  padding: 25px 20px;
  border-radius: 10px;
}

.mian .bottomside .populartags .tagslist {
  display: flex;
  flex-wrap: wrap;
}

.mian .bottomside .populartags .tagslist li {
  display: flex;
  align-items: center;
}

.mian .bottomside .populartags .tagslist li a {
  font-size: 16px;
  color: #354455;
  white-space: nowrap;
}

.mian .bottomside .populartags .tagslist li::after {
  content: "/";
  margin: 0 10px;
  font-size: 16px;
  color: #354455;
}

.mian .bottomside .informationrecomm {
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  padding: 25px 20px;
  border-radius: 10px;
}

.mian .bottomside .informationrecomm .various {
  display: flex;
  gap: 45px;
  overflow: hidden;
  flex-wrap: wrap;
}

.mian .bottomside .informationrecomm .various .separate {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.mian .bottomside .informationrecomm .various .separate li {
  width: 100%;
}

.mian .bottomside .informationrecomm .various .separate li:first-child {
  height: 140px;
}

.mian .bottomside .informationrecomm .various .separate li figure {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 12px;
}

.mian .bottomside .informationrecomm .various .separate li figure .cover {
  position: relative;
  width: 306px;
  height: 100%;
}

.mian .bottomside .informationrecomm .various .separate li figure .cover img {
  width: 100%;
  height: 100%;
}

.mian .bottomside .informationrecomm .various .separate li figure .cover .itemize {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  height: 23px;
  background: #eaeef6;
  font-size: 14px;
  color: #179dff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mian .bottomside .informationrecomm .various .separate li figure figcaption {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mian .bottomside .informationrecomm .various .separate li figure figcaption>span {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  color: #495564;
  font-weight: bold;
}

.mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum .social-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum time,
.mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum span {
  font-size: 12px;
  color: #354455;
  white-space: nowrap;
}

.mian .bottomside .informationrecomm .various .separate li .linkBox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mian .bottomside .informationrecomm .various .separate li .linkBox .newsList_text {
  display: flex;
  gap: 5px;
  flex: 1;
  overflow: hidden;
}

.mian .bottomside .informationrecomm .various .separate li .linkBox .newsList_text time {
  text-align: right;
  font-size: 12px;
  color: #495564;
}

.mian .bottomside .informationrecomm .various .separate li .linkBox img {
  width: 20px;
  height: 20px;
}

.mian .bottomside .informationrecomm .various .separate li .linkBox p {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #354455;
}

.mian .bottomside .relatedVideos .various .separate li figure .cover {
  position: relative;
}

.mian .bottomside .relatedVideos .various .separate li figure .cover .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
}

.mian .bottomside .relatedVideos .various .separate li figure .cover time {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.mian .bottomside .relatedVideos .various .separate li figure .cover .leng {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.mian .bottomside .relatedVideos .various .separate li figure .cover .play img {
  width: 100%;
  height: 100%;
}

.mian .bottomside .relatedVideos .various .separate li {
  height: 140px;
}

.mian .bottomside .relatedVideos .various .separate li figure figcaption span {
  font-weight: unset;
  color: #354455;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 14px;
}

.mian .bottomside .relatedVideos .various .separate li figure figcaption .quantum img {
  width: 23px;
  height: 20px;
}

.mian .publicBox {
  padding: 50px 20px;
  box-sizing: border-box;
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
}

.mian .publicBox h1 {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  text-align: center;
  color: #35434e;
  font-size: 30px;
}

.mian .publicBox .source {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.mian .publicBox .source span {
  font-size: 12px;
  color: #354455;
  white-space: nowrap;
}

.mian .publicBox .source time {
  font-size: 12px;
  color: #515f70;
  white-space: nowrap;
}

.mian .publicBox article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mian .publicBox article img {
  margin: 0 auto;
  width: 80%;
  height: auto;
  display: block;
  padding: 25px 0 25px 0;
  border-radius: 15px;
}

.mian .publicBox article>p {
  flex: 1;
  font-size: 14px;
  color: #354455;
  line-height: 30px;
}

.itemize {
  font-size: 14px;
}

.itemize a {
  color: #35434e;
}

.news_mian .news .relatedStaic {
  display: flex;
  align-items: center;
  margin-top: 113px;
}

.news_mian .news .relatedStaic span {
  font-size: 18px;
  gap: 10px;
  color: #354455;
  font-weight: bold;
}

.news_mian .news .relatedStaic ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_mian .news .relatedStaic ul li {
  width: 80px;
  height: 32px;
  background: #a7d4f7;
}

.news_mian .news .relatedStaic ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #354455;
}

.news_mian .news .togglebar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.news_mian .news .togglebar span {
  font-size: 18px;
  color: #354455;
}

.news_mian .news .togglebar p {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #179dff;
}

.news_mian .news .togglebar p a {
  color: #179dff;
}

.news_mian .news .operate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 117px;
}

.news_mian .news .operate .return {
  display: flex;
  align-items: center;
  gap: 34px;
}

.news_mian .news .operate .return .linkBox {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news_mian .news .operate .return .linkBox img {
  width: 21px;
  height: 21px;
}

.news_mian .news .operate .return .linkBox span {
  font-size: 18px;
  color: #354455;
}

.news_mian .news .operate .share {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news_mian .news .operate .share span {
  font-size: 18px;
  color: #354455;
  white-space: nowrap;
}

.news_mian .news .operate .share ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video .videoScreen {
  position: relative;
  width: 100%;
  height: 460px;
  margin-top: 20px;
}

.video .videoScreen .cover {
  width: 100%;
  height: 100%;
}

.video .videoScreen .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.video .videoScreen .play img {
  width: 100%;
  height: 100%;
}

.video .video_competition {
  position: relative;
  width: 100%;
  height: 350px;
  background: url(../public/img/videodetail.png) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 5px;
  margin-top: 25px;
}

.video .video_competition .recordingtitle {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 5px;
  box-sizing: border-box;
}

.video .video_competition .recordingtitle span {
  font-size: 18px;
  color: #fff;
}

.video .video_competition .recordingtitle a {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 18px;
}

.video .video_competition .bisaibox {
  width: 100%;
  height: auto;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr 1fr;
  box-sizing: border-box;
  padding: 0 30px;
  box-sizing: border-box;
  gap: 10px;
}

.video .video_competition .bisaibox .video_competition_team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  overflow: hidden;
}

.video .video_competition .bisaibox .video_competition_team .competition_team_img {
  width: 95px;
  height: auto;
}

.video .video_competition .bisaibox .video_competition_team .competition_team_img img {
  width: 100%;
  height: 100%;
}

.video .video_competition .bisaibox .video_competition_team p {
  color: #fff;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  text-align: center;
}

.video .video_competition .bisaibox .vs_info {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 25px;
  overflow: hidden;
}

.video .video_competition .bisaibox .vs_info .divide {
  text-align: center;
  font-size: 48px;
  color: #fff;
}

.video .video_competition .bisaibox .vs_info .vs_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.video .video_competition .bisaibox .vs_info .vs_center .belong {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.video .video_competition .bisaibox .vs_info .vs_center .status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.video .video_competition .bisaibox .vs_info .vs_center .status span {
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

.video .video_competition .bisaibox .vs_info .vs_center .specification {
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.video .splitInfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video .splitInfo .selectSplit {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f6f6f5;
  box-sizing: border-box;
  gap: 15px;
}

.video .splitInfo .selectSplit li {
  width: 63px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid transparent;
}

.video .splitInfo .selectSplit li a {
  font-size: 24px;
  color: #354455;
  white-space: nowrap;
}

.video .splitInfo .selectSplit li:hover {
  border-color: #179dff;
}

.video .splitInfo .selectSplit li:hover a {
  color: #179dff;
}

.video .splitInfo .selectSplit .active {
  border-color: #179dff;
}

.video .splitInfo .selectSplit .active a {
  color: #179dff;
}

.video .splitInfo .selectView {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.video .splitInfo .selectView .table {
  width: 100%;
  margin-top: 15px;
}

.video .splitInfo .selectView .table .linkBox {
  display: grid;
  align-items: center;
  height: 32px;
  text-align: center;
  grid-template-columns: 1fr 6fr 1fr 1fr;
}

.video .splitInfo .selectView .table .linkBox span {
  font-size: 12px;
  white-space: nowrap;
}

.video .splitInfo .selectView .table .thead {
  height: 35px;
  background: #c1d4ee;
}

.video .splitInfo .selectView .table .thead span {
  font-size: 14px;
  color: #354455;
  font-weight: bold;
  white-space: nowrap;
}

.video .splitInfo .selectView .externaltitle {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #354455;
  margin-bottom: 10px;
  font-weight: bold;
}

.video .splitInfo .selectView .internaltitle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video .splitInfo .selectView .internaltitle img {
  width: auto;
  height: 30px;
}

.video .splitInfo .selectView .internaltitle span {
  font-size: 16px;
  color: #354455;
  white-space: nowrap;
  font-weight: bold;
}

.video .splitInfo .selectView .internaltitle p {
  font-size: 16px;
  color: #354455;
  white-space: nowrap;
}

.video .splitInfo .selectView .point_teamBox {
  display: flex;
  flex-wrap: wrap;
}

.video .splitInfo .selectView .point_teamBox .point_team {
  width: calc(100% / 2);
}

.video .splitInfo .selectView .warfare .table .linkBox {
  grid-template-columns: repeat(6, 1fr);
}

.video .splitInfo .selectView .achievements .point_team .table .linkBox {
  grid-template-columns: 1fr 1fr 3fr 1fr;
}

.matchsorting {
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  padding: 25px 20px;
  margin-top: 20px;
}

.matchsorting .sorting_swiper {
  position: relative;
  padding: 0 90px;
}

.matchsorting .sorting_swiper .mySwiper {
  position: unset;
}

.matchsorting .sorting_swiper .swiper-slide {
  cursor: pointer;
  border: 1px solid transparent;
}

.matchsorting .sorting_swiper .swiper-button-next,
.matchsorting .sorting_swiper .swiper-button-prev {
  display: flex;
  top: 50%;
}

.matchsorting .sorting_swiper .swiper-button-next span,
.matchsorting .sorting_swiper .swiper-button-prev span {
  background-image: linear-gradient(45deg,
      #8dc5fb 20%,
      #66b4ff 60%,
      #8dc5fb 20%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 50px;
}

.matchsorting .sorting_swiper .swiper-button-prev span {
  transform: rotate(180deg);
}

.matchsorting .sorting_swiper .swiper-button-next:after,
.matchsorting .sorting_swiper .swiper-button-prev:after {
  display: none;
}

.matchsorting .sorting_swiper .swiper-slide figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.matchsorting .sorting_swiper .swiper-slide figure img {
  width: auto;
  height: 40px;
}

.matchsorting .sorting_swiper .swiper-slide figure figcaption {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 16px;
  white-space: nowrap;
  color: #354455;
}

.matchsorting .sorting_swiper .active {
  border: 1px solid #179dff;
}

.matchsorting .sorting_swiper .active figure figcaption {
  color: #179dff;
}

.matchsorting .sortingitem {
  width: 100%;
  margin-top: 20px;
}

.matchsorting .sortingitem ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.matchsorting .sortingitem ul li {
  width: calc(100% / 2 - 17px);
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 3fr 1fr;
  gap: 5px;
}

.matchsorting .sortingitem ul li time {
  font-size: 14px;
  white-space: nowrap;
  color: #354455;
}

.matchsorting .sortingitem ul li .unit {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
  overflow: hidden;
}

.matchsorting .sortingitem ul li .unit .pair {
  display: flex;
  align-items: center;
  color: #354455;
  font-size: 14px;
}

.matchsorting .sortingitem ul li .unit .pair:first-child {
  text-align: right;
}

.matchsorting .sortingitem ul li .unit .pair a {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  color: #354455;
  font-size: 14px;
}

.matchsorting .sortingitem ul li .unit .vs {
  text-align: center;
}

.matchsorting .sortingitem ul li .status {
  text-align: center;
  font-size: 14px;
  color: #354455;
  display: flex;
  align-items: center;
}

.matchsorting .sortingitem ul li .status a {
  font-size: 14px;
  color: #354455;
}

.matchelect {
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  padding: 25px 20px;
  box-sizing: border-box;
  margin-top: 95px;
}

.matchelect .matchelect_title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: #354455;
  font-weight: bold;
}

.matchelect .matchelect_list {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.matchelect .matchelect_list li {
  white-space: nowrap;
  font-size: 14px;
  color: #354455;
}

.matchelect .matchelect_list li a {
  font-size: 14px;
  color: #354455;
}

.matchlist {
  /* 兼容性处理，针对某些浏览器 */
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置背景颜色及透明度 */
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 10px 2px rgba(102, 175, 233, 0.584);
  border-radius: 10px;
  padding: 25px 20px;
  box-sizing: border-box;
}

.matchlist .numerous {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matchlist .numerous li {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 3fr 1fr;
  gap: 5px;
}

.matchlist .numerous li time {
  font-size: 14px;
  color: #354455;
  white-space: nowrap;
}

.matchlist .numerous li .nba {
  display: flex;
  align-items: center;
  justify-content: center;
}

.matchlist .numerous li .nba img {
  width: auto;
  height: 34px;
}

.matchlist .numerous li .nba span {
  font-size: 14px;
  color: #354455;
}

.matchlist .numerous li .corps {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
}

.matchlist .numerous li .corps .team {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.matchlist .numerous li .corps .team span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  text-align: left;
  color: #354455;
  font-size: 14px;
}

.matchlist .numerous li .corps .team img {
  width: auto;
  height: 38px;
}

.matchlist .numerous li .corps .linkBox {
  width: 100%;
  overflow: hidden;
}

.matchlist .numerous li .corps .linkBox:first-child .team span {
  text-align: right;
}

.matchlist .numerous li .corps .vs {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
}

.matchlist .numerous li .corps .vs span {
  text-align: center;
  font-size: 14px;
  color: #354455;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
}

.matchlist .numerous li .corps .vs span:first-child {
  text-align: right;
}

.matchlist .numerous li .corps .vs span:last-child {
  text-align: left;
}

.matchlist .numerous li .operate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.matchlist .numerous li .operate a {
  font-size: 14px;
  color: #179dff;
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  header .nav .select {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 100%);
    display: flex;
    flex-direction: column;
    background: #dde8f8;
  }

  header .nav .select::before {
    display: none;
  }

  header .nav .select li {
    width: 100%;
    min-height: 65px;
    justify-content: center;
  }

  header .nav {
    padding: 0 20px;
  }

  header .nav .rightBox .menu {
    display: flex;
  }

  .mian {
    padding: 0 10px;
    padding-top: 20px;
    padding-bottom: 94px;
  }

  .index_mian {
    padding-bottom: 200px;
  }

  .index_mian .index_swpier {
    padding: 0;
  }

  .index_mian .thecharts .thechartsBox .player .basketfoot {
    gap: 32px;
  }

  .index_mian .thecharts .thechartsBox .player .subclass li {
    padding: 0 5px;
  }

  .mian .bottomside .informationrecomm .various .separate li figure .cover {
    width: 186px;
  }

  .mian .bottomside .informationrecomm .various {
    gap: 25px;
  }

  .mian .bottomside .informationrecomm .various .separate {
    width: calc(100% / 2 - 13px);
  }

  .video .splitInfo .selectView .point_teamBox {
    flex-direction: column;
  }

  .video .splitInfo .selectView .point_teamBox .point_team {
    width: 100%;
  }

  .matchsorting .sortingitem ul li {
    width: calc(100% / 2 - 13px);
  }

  .matchsorting .sorting_swiper {
    padding: 0 45px;
  }

  body .index_mian .contest_swiper>ul>li {
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (max-width: 750px) {
  header .nav .rightBox .search input {
    display: none;
  }

  body .itemize {
    font-size: calc(18vw / 7.5);
  }

  body .mian .bottomside .relatedVideos .various .separate li figure figcaption span {
    font-size: calc(16vw / 7.5);
  }

  .footer {
    padding: 8vw 1.33333vw;
    box-sizing: border-box;
  }

  .footer .footer_box {
    gap: 2.66667vw;
  }

  .footer .friendship {
    flex-direction: column;
  }

  .footer .regard {
    gap: 2.66667vw;
  }

  body header .nav .select li a {
    font-size: calc(18vw / 7.5);
  }

  .footer .friendship span {
    font-size: 2.4vw;
  }

  .footer .friendship ul li a {
    font-size: 2.13333vw;
  }

  .footer .friendship ul li::after {
    height: 2.26667vw;
    margin: 0 1.33333vw;
    width: 0.26667vw;
  }

  .footer .regard a {
    font-size: 2.13333vw;
  }

  header {
    height: 12.93333vw;
  }

  header .nav {
    padding: 0 2.66667vw;
  }

  header .nav .logo img {
    height: 5.6vw;
  }

  header .nav .rightBox .search .btn {
    width: 6vw;
    height: 6vw;
    border-radius: 1.33333vw;
  }

  header .nav .rightBox .search .btn .iconfont {
    font-size: 2.66667vw;
  }

  header .nav .rightBox {
    gap: 2.66667vw;
  }

  header .nav .rightBox .menu {
    width: 5.33333vw;
    height: 4vw;
  }

  header .nav .rightBox .search .inputBox {
    display: none;
  }

  .index_mian .thecharts .thechartsBox {
    flex-direction: column;
  }

  .index_mian .index_swpier {
    height: 94.26667vw;
  }

  .index_mian .index_swpier .swiper-pagination {
    gap: 3.33333vw;
    bottom: 7.33333vw;
  }

  .index_mian .index_swpier .swiper-pagination-bullet {
    width: 2.53333vw;
    height: 2.53333vw;
  }

  .index_mian .index_swpier .swiper-pagination-bullet-active::after {
    width: 2.66667vw;
    height: 2.66667vw;
  }

  .index_mian .index_swpier .swiper-pagination-bullet-active {
    width: 3.73333vw;
    height: 3.73333vw;
  }

  .index_mian .contest_swiper .swiper .swiper-button-next .iconfont,
  .index_mian .contest_swiper .swiper .swiper-button-prev .iconfont {
    font-size: 8vw;
  }

  .mian .course {
    height: 19.46667vw;
    border-radius: 0.66667vw;
    padding: 0.66667vw;
  }

  .mian .course .time_info time {
    font-size: 2.13333vw;
  }

  .mian .course .rank .team {
    gap: 0.66667vw;
  }

  .mian .course .rank .team img {
    width: 7.2vw;
    height: 7.06667vw;
  }

  .mian .course .rank .team figcaption {
    font-size: calc(18vw / 7.5);
  }

  .mian .course .rank .rank_info .vs {
    gap: 0.66667vw;
  }

  .mian .course .rank .rank_info .vs span {
    font-size: 2.8vw;
  }

  .mian .course .rank .rank_info .status {
    font-size: 2.13333vw;
  }

  .mian .course .rank .rank_info .nba {
    font-size: 2.13333vw;
  }

  .swiper-button-prev {
    left: 0 !important;
  }

  .swiper-button-next {
    right: 0 !important;
  }

  .mian {
    padding: 0 1.33333vw;
    padding-top: 2.66667vw;
    padding-bottom: 12.53333vw;
  }

  .index_mian {
    padding: 0 1.33333vw;
    padding-bottom: 26.66667vw;
  }

  .mian .title {
    gap: 5.33333vw;
    margin-bottom: 7.33333vw;
    margin-top: 0;
  }

  .mian .title span {
    font-size: 8vw;
  }

  .mian .title img {
    width: 68vw;
    height: 2.13333vw;
  }

  .mian .newsArrange {
    gap: 5.6vw;
  }

  .body .mian .bottomside .informationrecomm .various .separate li .linkBox .newsList_text {
    gap: calc(5vw / 7.5);
  }

  body .mian .bottomside .informationrecomm .various .separate li .linkBox .newsList_text time {
    font-size: calc(16vw / 7.5);
  }

  .mian .newsArrange li {
    width: 100%;
    height: 14.26667vw;
    padding: 0 2.66667vw;
    border-radius: 1.33333vw;
  }

  .mian .newsArrange li .linkBox img {
    width: 6.4vw;
    height: 6.4vw;
  }

  .mian .newsArrange li .linkBox {
    gap: 1.33333vw;
  }

  .mian .newsArrange li .linkBox span {
    font-size: 2.66667vw;
  }

  .mian .videotabulation {
    gap: 3.33333vw;
  }

  .mian .videotabulation li {
    width: calc(100% / 2 - 13vw / 7.5);
    height: 27.33333vw;
    padding: 1.33333vw;
    border-radius: 1.33333vw;
  }

  .mian .videotabulation li figure .play {
    width: 4.66667vw;
    height: 5.73333vw;
  }

  .mian .videotabulation li figure time {
    left: 1.06667vw;
    top: 1.33333vw;
    font-size: 2.13333vw;
  }

  .mian .videotabulation li figure .belong {
    width: 8.26667vw;
    height: 3.2vw;
    font-size: 2.13333vw;
  }

  .mian .videotabulation li figure .brief {
    padding: 1.06667vw;
    font-size: 2.13333vw;
  }

  .index_mian .hotmatch .shift li {
    height: 8.66667vw;
    font-size: 3.2vw;
  }

  .index_mian .hotmatch .videoview {
    padding: 2.66667vw;
    margin-top: 4vw;
    border-radius: 1.33333vw;
  }

  .index_mian .hotmatch .videoview .visual {
    height: 15.2vw;
    padding: 0 7.33333vw;
    margin-bottom: 2.66667vw;
  }

  .index_mian .hotmatch .videoview .visual .swiper .swiper-button-next,
  .index_mian .hotmatch .videoview .visual .swiper .swiper-button-prev {
    width: 5.46667vw;
    height: 5.46667vw;
    border: 3px solid #66b4ff;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }

  .index_mian .hotmatch .videoview .visual .swiper .swiper-button-next:after,
  .index_mian .hotmatch .videoview .visual .swiper .swiper-button-prev:after {
    font-size: 2.13333vw;
  }

  .index_mian .thecharts .thechartsBox .player {
    width: 100%;
    border-radius: 1.33333vw;
    padding: 2.66667vw;
  }

  .index_mian .thecharts .thechartsBox .player .basketfoot li {
    font-size: 3.2vw;
    padding: 0 1.33333vw;
  }

  .index_mian .thecharts .thechartsBox .player .subclass {
    gap: 0.66667vw;
    margin-top: 3.2vw;
    margin-bottom: 1.86667vw;
  }

  .index_mian .thecharts .thechartsBox .player .subclass li {
    font-size: 2.4vw;
    padding: 0 0.66667vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .thead {
    height: 4.66667vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox span {
    font-size: 2.13333vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox .people article p {
    font-size: 2.13333vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(2) .position {
    width: 4.8vw;
    height: 3.86667vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(3) .position {
    width: 4.8vw;
    height: 3.86667vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(4) .position {
    width: 4.8vw;
    height: 3.86667vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox:nth-child(4) .position {
    width: 4.93333vw;
    height: 5.73333vw;
  }

  .index_mian .hotmatch .videoview .bigScreen {
    height: 56.66667vw;
  }

  .index_mian .hotmatch .videoview .bigScreen figure .cover {
    border-radius: 1.33333vw;
  }

  .index_mian .hotmatch .videoview .bigScreen figure .play {
    width: 8.4vw;
    height: 10.26667vw;
  }

  .index_mian .hotmatch .videoview .bigScreen figure figcaption {
    font-size: 2.4vw;
    padding: 1.33333vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox .people img {
    height: 5.86667vw;
  }

  .index_mian .thecharts .thechartsBox .group {
    width: 100%;
  }

  .index_mian .thecharts .thechartsBox .group .billboard {
    border-radius: 1.33333vw;
    padding: 2.66667vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .topic {
    margin-bottom: 2.93333vw;
    gap: 1.33333vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .topic img {
    width: 4.26667vw;
    height: 4.26667vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .topic span {
    font-size: 3.2vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox:nth-child(2) .position {
    width: 5.6vw;
    height: 3.6vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox:nth-child(3) .position {
    width: 5.6vw;
    height: 3.6vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox:nth-child(4) .position {
    width: 5.6vw;
    height: 3.6vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox .people {
    gap: 1.33333vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox {
    height: 8.66667vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox .people img {
    height: 4.66667vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox .position {
    width: 3.86667vw;
    height: 4vw;
    font-size: 2.13333vw;
  }

  .index_mian .thecharts .thechartsBox .group .billboard .seniority .linkBox .position {
    width: 3.33333vw;
    height: 3.86667vw;
  }

  .index_mian .thecharts .thechartsBox .seniority .linkBox {
    height: 8.66667vw;
  }

  .mian .bottomside {
    gap: 10.66667vw;
    margin-top: 11.33333vw;
  }

  .mian .bottomside .populartags {
    padding: 3.33333vw 2.66667vw;
    border-radius: 1.33333vw;
  }

  .mian .bottomside .bottomside_title {
    margin-bottom: 3.06667vw;
  }

  .mian .bottomside .bottomside_title span {
    font-size: 3.46667vw;
  }

  .mian .bottomside .populartags .tagslist li a {
    font-size: 2.4vw;
  }

  .mian .bottomside .populartags .tagslist li::after {
    font-size: 2.4vw;
    margin: 0 1.33333vw;
  }

  .mian .bottomside .informationrecomm {
    border-radius: 1.33333vw;
    padding: 3.33333vw 2.66667vw;
  }

  .mian .bottomside .informationrecomm .various .separate {
    width: 100%;
  }

  .mian .bottomside .informationrecomm .various {
    flex-direction: column;
  }

  .mian .bottomside .informationrecomm .various .separate li figure .cover {
    width: 40.8vw;
  }

  .mian .bottomside .informationrecomm .various .separate li figure {
    gap: 1.6vw;
  }

  .mian .bottomside .informationrecomm .various .separate li:first-child {
    height: 18.66667vw;
  }

  .mian .bottomside .informationrecomm .various .separate li figure figcaption>span {
    font-size: 2.4vw;
  }

  .mian .bottomside .informationrecomm .various .separate li figure .cover .itemize {
    width: 8.26667vw;
    height: 3.06667vw;
    font-size: 2.13333vw;
  }

  .mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum {
    gap: 1.33333vw;
  }

  .mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum .social-share {
    gap: 1.33333vw;
  }

  .mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum time,
  .mian .bottomside .informationrecomm .various .separate li figure figcaption .quantum span {
    font-size: 1.86667vw;
  }

  .mian .bottomside .informationrecomm .various .separate li .linkBox {
    gap: 1.33333vw;
  }

  .mian .bottomside .informationrecomm .various .separate li .linkBox img {
    width: 2.66667vw;
    height: 2.66667vw;
  }

  .mian .bottomside .informationrecomm .various .separate li .linkBox p {
    font-size: 2.4vw;
  }

  .mian .publicBox {
    padding: 6.66667vw 2.66667vw;
    border-radius: 1.33333vw;
  }

  .mian .publicBox h1 {
    font-size: 4vw;
  }

  .mian .publicBox article {
    gap: 2.66667vw;
  }

  .mian .publicBox .source {
    gap: 2vw;
  }

  .mian .publicBox .source time {
    font-size: 2.13333vw;
  }

  .mian .publicBox .source span {
    font-size: 2.13333vw;
  }

  .mian .publicBox article>p {
    font-size: 2.4vw;
    line-height: 4vw;
  }

  .mian .publicBox article img {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 2vw;
  }

  .news_mian .news .relatedStaic {
    margin-top: 15.06667vw;
  }

  .news_mian .news .relatedStaic span {
    font-size: 2.4vw;
  }

  .news_mian .news .relatedStaic ul li {
    width: 10.66667vw;
    height: 4.26667vw;
  }

  .news_mian .news .relatedStaic ul li a {
    font-size: 2.4vw;
  }

  .news_mian .news .togglebar {
    gap: 0.66667vw;
    margin-top: 2.66667vw;
  }

  .news_mian .news .togglebar span {
    font-size: 2.4vw;
  }

  .news_mian .news .togglebar p {
    font-size: 2.4vw;
  }

  .news_mian .news .operate {
    margin-top: 15.6vw;
  }

  .news_mian .news .operate .return .linkBox {
    gap: 0.66667vw;
  }

  .news_mian .news .operate .return {
    gap: 4.53333vw;
  }

  .news_mian .news .operate .return .linkBox img {
    width: 3.33333vw;
    height: 3.33333vw;
  }

  .news_mian .news .operate .return .linkBox span {
    font-size: 2.4vw;
  }

  .news_mian .news .operate .share {
    gap: 0.66667vw;
  }

  .news_mian .news .operate .share span {
    font-size: 2.4vw;
  }

  .news_mian .news .operate .share ul {
    gap: 1.33333vw;
  }

  .news_mian .news .operate .share ul img {
    transform: scale(0.5);
  }

  .video .videoScreen {
    height: 61.33333vw;
  }

  .video .videoScreen .play {
    width: 13.33333vw;
    height: 13.33333vw;
  }

  .video .video_competition {
    height: 46.66667vw;
    margin-bottom: 2vw;
    border-radius: 0.66667vw;
    margin-top: 3.33333vw;
  }

  .video .video_competition .recordingtitle {
    padding: 0.66667vw;
  }

  .video .video_competition .recordingtitle span {
    font-size: 2.4vw;
  }

  .video .video_competition .recordingtitle a {
    font-size: 2.4vw;
  }

  .video .video_competition .bisaibox {
    padding: 0 4vw;
    gap: 1.33333vw;
  }

  .video .video_competition .bisaibox .vs_info .divide {
    font-size: 6.4vw;
  }

  .video .video_competition .bisaibox .vs_info {
    gap: 3.33333vw;
  }

  .video .video_competition .bisaibox .video_competition_team .competition_team_img {
    width: 17.2vw;
  }

  .video .video_competition .bisaibox .vs_info .vs_center .belong {
    font-size: 2.4vw;
  }

  .video .video_competition .bisaibox .vs_info .vs_center .status span {
    font-size: 2.4vw;
  }

  .video .video_competition .bisaibox .vs_info .vs_center .specification {
    font-size: 2.4vw;
  }

  .video .video_competition .bisaibox .video_competition_team p {
    font-size: 3.2vw;
  }

  .video .splitInfo .selectSplit {
    height: 8vw;
  }

  .video .splitInfo .selectSplit li {
    width: 8.4vw;
    border-bottom: 0.53333vw solid transparent;
  }

  .video .splitInfo .selectSplit li a {
    font-size: 3.2vw;
  }

  .video .splitInfo .selectView .externaltitle {
    font-size: 2.66667vw;
    margin-bottom: 1.33333vw;
  }

  .video .splitInfo .selectView .internaltitle {
    gap: 1.33333vw;
  }

  .video .splitInfo .selectView .internaltitle img {
    height: 4vw;
  }

  .video .splitInfo .selectView .table .thead {
    height: 5.46667vw;
  }

  .video .splitInfo .selectView .table .thead span {
    font-size: 2.4vw;
  }

  .video .splitInfo .selectView .table .linkBox {
    height: 4.8vw;
  }

  .video .splitInfo .selectView .table .linkBox span {
    font-size: 2.13333vw;
  }

  .video .splitInfo .selectView .internaltitle span {
    font-size: 2.13333vw;
  }

  .video .splitInfo .selectView .internaltitle p {
    font-size: 2.13333vw;
  }

  .mian .bottomside .relatedVideos .various .separate li {
    height: 18.66667vw;
  }

  .mian .bottomside .relatedVideos .various .separate li figure figcaption span {
    font-size: 2.13333vw;
  }

  .mian .bottomside .relatedVideos .various .separate li figure figcaption .quantum img {
    width: 3.06667vw;
    height: 2.66667vw;
  }

  .mian .bottomside .relatedVideos .various .separate li figure .cover .play {
    width: 7.33333vw;
    height: 7.33333vw;
  }

  .mian .bottomside .relatedVideos .various .separate li figure .cover time {
    bottom: calc(8vw / 7.5);
    right: calc(8vw / 7.5);
    font-size: calc(16vw / 7.5);
  }

  .mian .bottomside .relatedVideos .various .separate li figure .cover .leng {
    left: calc(8vw / 7.5);
    top: calc(8vw / 7.5);
    font-size: calc(16vw / 7.5);
  }

  body .social-share .social-share-icon {
    width: 4.26667vw;
    height: 4.26667vw;
    font-size: 2.66667vw;
    line-height: 4.26667vw;
  }

  .matchsorting {
    padding: 3.33333vw 2.66667vw;
    margin-top: 2.66667vw;
    border-radius: 1.33333vw;
  }

  .matchsorting .sorting_swiper .swiper-button-next span,
  .matchsorting .sorting_swiper .swiper-button-prev span {
    font-size: 8vw;
  }

  .matchsorting .sorting_swiper .swiper-slide figure img {
    height: calc(45vw / 7.5);
  }

  .matchsorting .sorting_swiper .swiper-slide figure figcaption {
    font-size: 2.4vw;
  }

  .matchsorting .sortingitem ul {
    gap: 2.33333vw;
  }

  .matchsorting .sortingitem ul li {
    width: 100%;
  }

  .matchsorting .sortingitem ul li time {
    font-size: 2.4vw;
  }

  .matchsorting .sortingitem ul li .unit .pair a {
    font-size: 2.4vw;
  }

  .matchsorting .sortingitem ul li .unit .vs {
    font-size: 2.4vw;
  }

  .matchsorting .sortingitem ul li .status a {
    font-size: 2.4vw;
  }

  .matchsorting .sorting_swiper {
    padding: 0 6vw;
  }

  .matchelect {
    padding: 3.33333vw 2.66667vw;
    margin-top: 12.66667vw;
  }

  .matchelect .matchelect_title {
    font-size: 3.46667vw;
  }

  .matchelect .matchelect_list {
    margin-top: 3.33333vw;
    gap: 2vw;
  }

  .matchelect .matchelect_list li a {
    font-size: 2.4vw;
  }

  .matchlist {
    border-radius: 1.33333vw;
    padding: 3.33333vw 2.66667vw;
  }

  .matchlist .numerous li time {
    font-size: 2.13333vw;
  }

  .matchlist .numerous li .nba img {
    height: 4.53333vw;
  }

  .matchlist .numerous li .nba span {
    font-size: 2.13333vw;
  }

  .matchlist .numerous li .corps .team {
    gap: 0.66667vw;
  }

  .matchlist .numerous li .corps .team span {
    font-size: calc(20vw / 7.5);
  }

  .matchlist .numerous li .corps .team img {
    height: 5.06667vw;
  }

  .matchlist .numerous li .corps .vs span {
    font-size: 2.13333vw;
  }

  .matchlist .numerous li .operate {
    gap: 0.66667vw;
  }

  .matchlist .numerous li .operate a {
    font-size: 2.13333vw;
  }

  .matchlist .numerous li {
    gap: 0.66667vw;
  }
}

@media screen and (min-width: 1001px) {
  header .nav .select {
    display: flex;
    height: 100% !important;
  }
}

.eventName {
  margin-top: 15px;
}

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

.eventName p,
.eventName span {
  font-size: 14px;
  color: #333;
}

.eventName ul li a {
  font-size: 14px;
  color: #333;
}

.eventName p {
  line-height: 26px;
}

@media screen and (max-width: 750px) {
  body .eventName {
    margin-top: calc(15vw / 7.5);
  }

  body .eventName ul {
    gap: calc(10vw / 7.5);
  }

  body .eventName ul li a {
    font-size: calc(14vw / 7.5);
  }

  body .eventName li {
    font-size: calc(14vw / 7.5);
  }

  body .eventName span {
    font-size: calc(14vw / 7.5);
  }

  body .eventName p {
    line-height: calc(26vw / 7.5);
    font-size: calc(14vw / 7.5);
  }

  body .mian .textInfor {
    gap: 2vw;
  }

  body .mian .textInfor>p {
    font-size: 2.13333vw;
    list-style: 3.46667vw;
  }

  body .mian .itemize p {
    font-size: 2.13333vw;
  }

  body .mian .textInfor .cue {
    font-size: 2.13333vw;
  }

  body .mian .textInfor .cue .ul-signal {
    gap: 1.33333vw;
  }

  body .mian .textInfor .cue .ul-signal li a {
    font-size: 2.4vw;
  }

  body .index_mian .contest_swiper>ul {
    gap: calc(20vw / 7.5);
  }

  body .index_mian .contest_swiper>ul>li {
    width: calc(100% / 2 - (10vw / 7.5));
  }

  body .mian .newsArrange li .linkBox .news_text {
    gap: calc(5vw / 7.5);
  }

  body .mian .newsArrange li .linkBox .news_text time {
    font-size: calc(16vw / 7.5);
  }
}

.mian .textInfor {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mian .textInfor .cue {
  display: flex;
  align-items: center;
}

.mian .textInfor .cue .ul-signal {
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 10px;
}

.mian .textInfor .cue .ul-signal li {
  font-size: 16px;
  font-weight: bold;
}

.mian .textInfor .cue .ul-signal li a {
  white-space: nowrap;
  font-size: 16px;
  font-weight: bold;
  color: #179dff;
}

.mian .textInfor>p {
  line-height: 26px;
  font-size: 16px;
}

.analysis {
  width: 100%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.16) 0px 4px 16px 0px;
  margin-top: 59px;
  box-sizing: border-box;
}

.analysis ul {
  display: flex;
}

.analysis ul li {
  position: relative;
  width: calc(100% / 3);
  height: auto;
  background: #fff;
  padding: 0 24px;
  box-sizing: border-box;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.analysis ul li .likenessBox {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.analysis ul li .likeness {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.analysis ul li .likeness img {
  width: 53px;
  height: 53px;
  border-radius: 50%;
}

.analysis ul li .likenessBox span {
  font-size: 18px;
  color: #333333;
}

.analysis ul li .likenessBox span a {
  color: #333;
}

.analysis ul .neutrality {
  background: #f7f7f8;
}

.analysis ul .neutrality::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 4px;
  background: rgb(1, 26, 56);
}

.analysis ul li .placeBox {
  padding-top: 88px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.analysis ul li .place .place_title {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.analysis ul li .place .place_title::before {
  content: "";
  width: 4px;
  height: 28px;
}

.analysis ul li .favorable .place_title {
  color: #de1e30;
}

.analysis ul li .favorable .place_title::before {
  background: #de1e30;
}

.analysis ul li .unlucky .place_title {
  color: #56a4d5;
}

.analysis ul li .unlucky .place_title::before {
  background: #56a4d5;
}

.analysis ul li .neutralityBox .place_title {
  color: #ecbf08;
  justify-content: center;
}

.analysis ul li .neutralityBox .place_title::before {
  display: none;
}

.analysis ul li .place .vessel {
  display: flex;
  gap: 40px;
}

.analysis ul li .place .qb-status-1 .text p {
  color: #6c757d !important;
}

.analysis ul li .place .qb-status-2 .text p {
  color: #ffc107 !important;
}

.analysis ul li .place .qb-status-3 .text p {
  color: #17a2b8 !important;
}

.analysis ul li .place .qb-status-4 .text p {
  color: #007bff !important;
}

.analysis ul li .place .qb-status-5 .text p {
  color: #dc3545 !important;
}

.analysis ul li .place .vesselBox {
  margin-top: 16px;
}

.analysis ul li .place .vessel .mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analysis ul li .place .vessel .mark span {
  width: 5px;
  height: 5px;
  background: red;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
}

.analysis ul li .favorable .vessel .mark span {
  background: #de1e30;
}

.analysis ul li .unlucky .vessel .mark span {
  background: #56a4d5;
}

.analysis ul li .place .vessel .mark::before {
  content: "";
  width: 3px;
  height: 18px;
  background: #e9eaee;
}

.analysis ul li .place .vessel .mark::after {
  content: "";
  width: 3px;
  flex: 1;
  background: #e9eaee;
}

.analysis ul li .place .vessel .text p {
  font-size: 12px;
  color: #838383;
}

.analysis ul li .place .vessel .text p:first-child {
  padding-bottom: 31px;
  padding-top: 13px;
}

.code {
  display: flex;
  justify-content: center;
}

.code span {
  font-size: 16px;
  color: #fff;
}

.svgCode {
  width: auto;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

.svgCode .codeFont {
  font-size: 14px;
  transform: translateY(16px);
}

@media screen and (max-width: 750px) {
  .analysis ul li .placeBox {
    padding-top: calc(88vw / 7.5);
    gap: calc(28vw / 7.5);
  }

  .analysis ul {
    flex-direction: column;
  }

  .analysis ul li {
    width: 100%;
    padding: 0 calc(24vw / 7.5);
    padding-bottom: calc(30vw / 7.5);
  }

  .analysis {
    margin-top: calc(59vw / 7.5);
  }

  .analysis ul li .place .vessel {
    gap: calc(40vw / 7.5);
  }

  .analysis ul li .place .vessel .text p:first-child {
    padding-bottom: calc(31vw / 7.5);
    padding-top: calc(13vw / 7.5);
  }

  .analysis ul li .place .vessel .text p {
    font-size: calc(18vw / 7.5);
  }

  .analysis ul li .likeness {
    width: calc(83vw / 7.5);
    height: calc(83vw / 7.5);
  }

  .analysis ul li .likeness img {
    width: calc(53vw / 7.5);
    height: calc(53vw / 7.5);
  }

  .analysis ul li .likenessBox span {
    font-size: calc(20vw / 7.5);
  }

  .analysis ul li .place .place_title {
    font-size: calc(20vw / 7.5);
  }

  .analysis ul li .place .place_title::before {
    height: 20px;
  }

  .analysis ul li .place .vessel .mark::before {
    height: calc(18vw / 7.5);
  }

  .footer .code {
    padding: 0 calc(10vw / 7.5);
  }

  .footer .code span {
    font-size: calc(18vw / 7.5);
  }

  .footer .svgCode {
    height: calc(18vw / 7.5);
  }

  .footer .svgCode .codeFont {
    font-size: calc(18vw / 7.5);
    transform: translateY(2.13333vw);
  }
}

.video .splitInfo .selectView .point .table li {
  padding: 5px 16px;
  box-sizing: border-box;
}

.video .splitInfo .selectView .point .table li:last-child {
  border-bottom: none;
}

.video .splitInfo .selectView .point .table li:first-child .linkbox span {
  font-weight: 600;
}

.video .splitInfo .selectView .point .table li .troops {
  display: flex;
}

.video .splitInfo .selectView .point .table li .troops span {
  flex: 1;
}

.video .splitInfo .selectView .point .table li .linkbox {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 6fr 1fr 1fr;
  gap: 5px;
}

.video .splitInfo .selectView .point .table li .linkbox span,
.video .splitInfo .selectView .point .table li .linkbox time {
  color: #25170c;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.video .splitInfo .selectView .point .table li .linkbox .integral {
  text-align: right;
}

.video .splitInfo .selectView .point .table li .linkbox .battle {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  gap: 6px;
}

.video .splitInfo .selectView .point .table li .linkbox .battle .answer {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video .splitInfo .selectView .point .table li .linkbox .battle .answer img {
  width: 38px;
  height: 33px;
}

.video .splitInfo .selectView .point .table li .linkbox .battle .answer span {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.video .splitInfo .selectView .point .table li .linkbox .battle .answer:first-child span {
  text-align: right;
}

.video .splitInfo .selectView .point .table li .linkbox .battle .answer:last-child span {
  text-align: left;
}

.video .splitInfo .selectView .point .table li .linkbox .battle .divide {
  width: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video .splitInfo .selectView .warfare ul {
  width: 100%;
}

.video .splitInfo .selectView .warfare ul li {
  width: 100%;
  padding: 5px 16px;
  box-sizing: border-box;
}

.video .splitInfo .selectView .warfare ul li:last-child {
  border-bottom: none;
}

.video .splitInfo .selectView .warfare ul li .linkbox {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 3fr 1fr;
  width: 100%;
}

.video .splitInfo .selectView .warfare ul li .year {
  font-size: 14px;
  color: #4b4644;
  white-space: nowrap;
}

.video .splitInfo .selectView .warfare ul li .time {
  font-size: 14px;
  color: #25170c;
  text-align: center;
}

.video .splitInfo .selectView .warfare ul li .rank {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 35px;
}

.video .splitInfo .selectView .warfare ul li .rank .rank_team {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  gap: 12px;
}

.video .splitInfo .selectView .warfare ul li .rank .rank_team span {
  flex: 1;
  font-size: 14px;
  color: #25170c;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.video .splitInfo .selectView .warfare ul li .rank .rank_team img {
  width: 37px;
  height: 37px;
}

.video .splitInfo .selectView .warfare ul li .rank .rank_team:first-child span {
  text-align: right;
}

.video .splitInfo .selectView .warfare ul li .rank .rank_bifen {
  display: flex;
  width: 72px;
  justify-content: center;
}

.video .splitInfo .selectView .warfare ul li .rank .rank_bifen span {
  white-space: nowrap;
  font-size: 14px;
  color: #25170c;
}

.video .splitInfo .selectView .warfare ul li .gamedetails {
  color: #25170c;
  font-size: 14px;
  white-space: nowrap;
  text-align: right;
}

@media screen and (max-width: 750px) {
  body .video .splitInfo .selectView .warfare ul li {
    padding: 0.66667vw;
  }

  body .footer .regard p {
    font-size: calc(16vw / 7.5);
  }

  body .video .splitInfo .selectView .warfare ul li .year {
    font-size: 2.66667vw;
  }

  body .video .splitInfo .selectView .warfare ul li .time {
    font-size: 2.66667vw;
  }

  body .video .splitInfo .selectView .warfare ul li .rank {
    gap: 1.33333vw;
  }

  body .video .splitInfo .selectView .warfare ul li .rank .rank_team img {
    width: 4.93333vw;
    height: 4.93333vw;
  }

  body .video .splitInfo .selectView .warfare ul li .rank .rank_team span {
    font-size: 2.66667vw;
  }

  body .video .splitInfo .selectView .warfare ul li .gamedetails {
    font-size: 2.66667vw;
  }

  body .video .splitInfo .selectView .warfare ul li .rank .rank_bifen {
    width: 9.33333vw;
  }

  body .video .splitInfo .selectView .warfare ul li .rank .rank_bifen span {
    font-size: 2.66667vw;
  }

  .video .splitInfo .selectView .point .table li .linkbox {
    gap: calc(5vw / 7.5);
  }

  .video .splitInfo .selectView .point .table li .linkbox span,
  .video .splitInfo .selectView .point .table li .linkbox time {
    font-size: calc(18vw / 7.5);
  }

  .video .splitInfo .selectView .point .table li .linkbox .battle {
    gap: calc(6vw / 7.5);
  }

  .video .splitInfo .selectView .point .table li .linkbox .battle .answer {
    gap: calc(10vw / 7.5);
  }

  .video .splitInfo .selectView .point .table li .linkbox .battle .answer img {
    width: calc(38vw / 7.5);
    height: calc(33vw / 7.5);
  }

  .video .splitInfo .selectView .point .table li .linkbox .battle .divide {
    width: calc(72vw / 7.5);
  }

  .video .splitInfo .selectView .point .table li {
    padding: calc(5vw / 7.5) calc(16vw / 7.5);
  }
}