* {
  box-sizing: border-box;
  --main-color: #63295b;
  --secondary-color: #656d32;
  --third-color: rgb(148, 7, 7);
  --bg-color: rgb(97, 85, 49);
}

.text-center {
  text-align: center;
}

.main-page-h1 {
  margin: 0;
  font-size: 24px;
  color: rgb(95, 24, 44);
}

.agadga {
  width: 110px;
}
.team_block {
  padding: 5px;
  border: 1px solid #3389a22b;
  border-radius: 0 0 10px 10px;
  border-top: none;
}

nav a {
  text-align: center;
}

h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  position: relative;
}

h2.aside_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  margin-top: 5px;
}

html {
  scroll-behavior: smooth;
}

.logo_and_search_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}

main {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 3fr 1fr;
}

header {
  background: var(--bg-color);
}

.search-box {
  background-color: #f8f8f8;
  padding: 5px 10px;
}

.search-box input {
  border: none;
  background-color: transparent;
  outline: none;
}

.search-box #search-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.match_type_btn {
  border: 2px solid var(--main-color);
  color: var(--third-color);
  background-color: transparent;
  font-size: 22px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 40px;
  cursor: pointer;
}

.match_type_btn.active {
  border: 2px solid var(--main-color);
  color: white;
  background-color: var(--main-color);
}

.btn {
  align-items: center;
  background: var(--main-color);
  border-radius: 6px;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  padding: 15px 45px;
  transition: 0.2s;
  font-weight: 600;
}

.btn:hover {
  background: #810f25;
  transform: translateY(-2px);
}

.register,
.login {
  border-radius: 5px;
  box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.1);
  height: auto;
  max-width: 400px;
  padding: 40px 15px;
  text-align: center;
  width: 100%;
}

.register .fas,
.login .fas {
  color: #4d61fc;
  font-size: 30px;
  margin-bottom: 5px;
}

.register strong,
.login strong {
  color: #3b3663;
  display: block;
  font-size: 28px;
}

.register span,
.login span {
  color: #696687;
  font-size: 18px;
  opacity: 0.8;
}

.register .create-account,
.login .create-account {
  border-top: 1px solid #e2e2e2;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  padding-top: 20px;
}

.register .create-account strong,
.login .create-account strong {
  font-size: 16px;
  margin-left: 5px;
  text-decoration: underline;
}

.register,
.login {
  background: #fff;
}

.register .form,
.login .form {
  margin-top: 30px;
  padding: 0 20px;
}

.register .form .form-row,
.login .form .form-row {
  position: relative;
  text-align: left;
}

.register .form .form-row .fas,
.login .form .form-row .fas {
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 30px;
  color: #696687;
  opacity: 0.3;
}

.register .form .form-row.bottom,
.login .form .form-row.bottom {
  display: flex;
  justify-content: space-between;
}

.register .form .form-row.bottom .forgot,
.login .form .form-row.bottom .forgot {
  color: var(--third-color);
  font-size: 18px;
  opacity: 0.7;
}

.register .form .form-row.bottom .forgot:hover,
.login .form .form-row.bottom .forgot:hover {
  opacity: 1;
}

.register .form .form-row.button-login,
.login .form .form-row.button-login {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.register .form .form-row.button-login .fas,
.login .form .form-row.button-login .fas {
  position: static;
}

.register .form .form-row .form-check input[type="checkbox"] + label,
.login .form .form-row .form-check input[type="checkbox"] + label {
  cursor: pointer;
  display: block;
  color: #696687;
  font-size: 18px;
  opacity: 0.7;
}

.register .form .form-row .form-check input[type="checkbox"],
.login .form .form-row .form-check input[type="checkbox"] {
  display: none;
}

.register .form .form-row .form-check input[type="checkbox"] + label:before,
.login .form .form-row .form-check input[type="checkbox"] + label:before {
  border-radius: 3px;
  border: 1px solid #e2e2e2;
  color: transparent;
  content: "\2714";
  display: inline-block;
  height: 18px;
  margin-right: 5px;
  transition: 0.2s;
  vertical-align: inherit;
  width: 18px;
  text-align: center;
  line-height: 20px;
}

.register
  .form
  .form-row
  .form-check
  input[type="checkbox"]
  + label:active:before,
.login
  .form
  .form-row
  .form-check
  input[type="checkbox"]
  + label:active:before {
  transform: scale(1.1);
}

.register
  .form
  .form-row
  .form-check
  input[type="checkbox"]:checked
  + label:before,
.login
  .form
  .form-row
  .form-check
  input[type="checkbox"]:checked
  + label:before {
  background-color: #4d61fc;
  border-color: #4d61fc;
  color: #fff;
}

.register .form .form-label,
.login .form .form-label {
  color: #696687;
  font-size: 17px;
  opacity: 0.7;
}

.register .form-password,
.register .form-text,
.login .form-password,
.login .form-text {
  color: #696687;
  font-size: 18px;
  border: 0;
  height: 40px;
  margin-bottom: 15px;
  padding: 0 40px 0 0px;
  width: 100%;
  background: white no-repeat;
  transition: 100ms all linear 0s;
  background-image: linear-gradient(
      to bottom,
      rgba(196, 32, 32, 0.63) 0%,
      #8d0d0d 90%
    ),
    linear-gradient(to bottom, #e1e1e1, #e1e1e1);
  background-size: 0 2px, 100% 1px;
  background-position: 50% 100%, 50% 100%;
  transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}

.register .form-password:focus,
.register .form-text:focus,
.login .form-password:focus,
.login .form-text:focus {
  background-size: 100% 2px, 100% 1px;
  outline: none;
}

.register {
  margin-left: 30px;
}

.register .form .form-row .button-login {
  margin-top: 20px;
}

.register .btn-login .fas.fa-arrow-right,
.login .btn-login .fas.fa-arrow-right {
  color: #fff;
  opacity: 1;
}

.register .social-media {
  font-size: 20px;
  margin-top: 10px;
}

.register .social-media .fab {
  margin: 0 5px;
}

.register .social-media a.fb span {
  color: #3b5998;
}

.register .social-media a.tw span {
  color: #1da1f2;
}

.register .social-media a.pi span {
  color: #e60023;
}

.ext_section {
  margin-top: 15px;
}

.btn .fas.fa-arrow-right {
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  margin: 0 0 0 10px;
}

#login_btn {
  color: white;
  margin-right: 10px;
}

.text-white {
  color: white;
}

.pb-10px {
  padding-bottom: 10px;
}

.cursor-pointer {
  cursor: pointer;
}

a {
  text-decoration-line: none;
  color: unset;
}

h3 {
  margin: 0;
}

ul {
  padding-left: 0;
  margin: 0;
}

.login_btn {
  margin-left: 10px;
  color: white;
}

.iconfont {
  color: #666;
}

.overflow-y-auto {
  overflow-y: auto;
}

#page_content {
  min-height: calc(100vh - 320px);
}

.ml-10px {
  margin-left: 10px;
}

.ml-30px {
  margin-left: 30px;
}

li {
  list-style-type: none;
}

.mr-10px {
  margin-right: 10px;
}

img {
  display: block;
}

.site_container {
  width: 100%;
  margin: 0 auto;
  font-weight: bold;
  max-width: 1200px;
  padding: 0 15px;
}

.score {
  color: var(--main-color);
  width: 30%;
  text-align: center;
}

.px-10px {
  padding-left: 10px;
  padding-right: 10px;
}

.flex {
  display: flex;
  align-items: center;
}

.bread_crumbs {
  margin: 10px 0;
  color: #666;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-start {
  align-items: flex-start;
}
.mt-10px {
  margin-top: 10px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mt-30px {
  margin-top: 30px;
}

.gap-10px {
  gap: 10px;
}

.flex-1 {
  flex-grow: 1;
}

.hidden {
  display: none;
}

.sidebar_link {
  color: var(--main-color);
  font-size: 20px;
  line-height: 30px;
  width: 200px;
  border: 1px solid var(--main-color);
  border-radius: 5px;
}

#tabs,
#tab {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 10px;
}

#tabs .tab_d,
#tab > span {
  width: calc(100% / 3);
  color: var(--main-color);
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}

#tabs .tab_d.active,
#tab > span.j12_YjM4_dGFiLWN1cnJlbnRw {
  background-color: var(--main-color);
  color: white;
}

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

p {
  margin: 0;
}

.fight {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
  background: linear-gradient(
    to right,
    #ff0000,
    #acac03
  ); /*设置渐变的方向从左到右 颜色从ff0000到ffff00*/
  -webkit-background-clip: text; /*将设置的背景颜色限制在文字中*/
  -webkit-text-fill-color: transparent; /*给文字设置成透明*/
  display: flex;
}

.fight > p {
  width: 35%;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.tab_content,
.tab_content_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #f0f0f0;
  padding: 10px;
  border-radius: 10px;
}

.tab_content_item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  border: 1px solid var(--main-color);
  align-items: center;
  border-radius: 10px;
  margin-bottom: 5px;
}

.tab_content_item_head {
  background-color: var(--main-color);
  color: white;
  padding: 10px;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tab_content_item_content {
  padding: 10px;
}

.MatchName {
  font-weight: bold;
  color: #508059;
  display: block;
  min-width: 100px;
}

footer {
  margin-top: 30px;
  padding: 10px;
  line-height: 1.5;
  background: var(--bg-color);
  color: white;
}

.team-item {
  border: 1px solid var(--main-color);
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  color: var(--main-color);
  font-size: 12px;
}

.news li {
  margin-bottom: 10px;
}

.news li a {
  position: relative;
}

.news li img {
  width: 100%;
  position: relative;
}

.news li p {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.database_title {
  margin-bottom: 0;
}

.cccc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  row-gap: 10px;
}
.cccc .tab_content_item {
  flex-direction: row;
  padding: 0 10px;
}

.cccc .tab_content_item .flex.flex-col {
  align-items: end;
}

.articale_section {
  display: flex;
  justify-content: space-between;
  color: var(--main-color);
  line-height: 2;
  align-items: self-start;
  border-bottom: 1px dashed var(--main-color);
}

.b-title {
  color: var(--secondary-color);
}

.articale_section dl {
  padding: 0 10px;
}

.articale_section dl dt {
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 18px;
}

.articale_section img {
  min-width: 150px;
  max-width: 150px;
  height: 100px;
  object-fit: cover;
  object-position: top center;
  margin-right: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
}

.pagination > .active {
  color: red;
}

.bread_crumbs_pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articale_section_date {
  text-align: right;
  color: #ccc;
}

.w-full {
  width: 100%;
}

.tab_content_item.w-full {
  width: 100%;
  padding: 10px;
  text-align: left;
}

.articale-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-999999 {
  color: #666;
}

#list li {
  margin-top: 10px;
}

.py-20px {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-10px {
  padding-top: 10px;
  padding-bottom: 10px;
}

.j12_YjM4_bGl2ZV9kZXRhaWxw_tab,
thead th {
  border-bottom: 2px solid var(--main-color);
}

#start-list,
#type-list,
#date-list {
  border: 1px solid var(--main-color);
}

#start-list li {
  text-align: center;
  line-height: 50px;
  width: 100px;
}

#type-list li,
.j12_YjM4_bGl2ZV9kZXRhaWxw_tab li {
  text-align: center;
  line-height: 50px;
  width: 100px;
}

.j12_YjM4_bGl2ZV9kZXRhaWxw_tab li.active,
#type-list li.active,
#start-list li.active,
#date-list li.active {
  color: white;
  background-color: var(--main-color);
}

#date-list {
  display: flex;
  gap: 10px;
}

#date-list li {
  width: calc(100% / 9);
  text-align: center;
}
.vs {
  width: 60px;
  display: inline-block;
  text-align: center;
}

.round {
  width: 80px;
  margin-right: 4px;
  display: inline-block;
}

.team {
  display: flex;
  align-items: center;
  width: 100%;
  color: #927161;
}

.team img {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  object-fit: cover;
}

.reverse {
  flex-direction: row-reverse;
}

.live_list {
  display: grid;
  gap: 10px;
  width: 100%;
}

.live_list li {
  border-bottom: 1px solid var(--main-color);
  padding: 10px;
  text-align: center;
}

.live_list li span {
  text-align: left;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

nav.site_container {
  row-gap: 10px;
  grid-template-columns: repeat(9, 1fr);
  padding: 10px 0;
}

nav.site_container {
  color: white;
}

.site_container_2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 10px;
  padding: 0 20px;
}

#news {
  position: relative;
}

#news p i {
  color: white;
  vertical-align: text-bottom;
  margin-left: 5px;
}

.news_list {
  display: none;
  position: absolute;
  background: #f5f5f5;
  color: var(--bg-color);
  left: 0;
  right: 0;
  padding: 10px;
}

.news_item {
  display: block;
  line-height: 1.8;
}

.signal_list,
.year_list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
}

.gap-0px {
  gap: 0px;
}

.signal_list li,
.year_list li {
  width: calc(100% / 5);
  border: 1px solid var(--main-color);
  padding: 10px;
  text-align: center;
}

.signal_list li.active,
.year_list li.active {
  background-color: var(--main-color);
  color: white;
}

.text-center {
  text-align: center;
}

.logo_img {
  width: 30px;
  height: 30px;
}

.items-center {
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.live_team {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: start;
}

.live_team img {
  width: 20px;
  height: 20px;
}

.live_teams {
  padding-bottom: 10px;
  position: relative;
}

.live_teams a {
  background: linear-gradient(
    to right,
    #ff0000,
    #acac03
  ); /*设置渐变的方向从左到右 颜色从ff0000到ffff00*/
  -webkit-background-clip: text; /*将设置的背景颜色限制在文字中*/
  -webkit-text-fill-color: transparent; /*给文字设置成透明*/
}

.live_teams > div {
  margin-bottom: 10px;
}

.live_teams::after {
  content: "";
  position: absolute;
  width: 100%;
  border: 1px solid var(--main-color);
}

.tag_data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10px;
  align-items: flex-start;
  flex-grow: 1;
}

.tag_time {
  font-size: 14px;
}

.tag_info_img {
  width: 120px;
  height: 80px;
  object-fit: cover;
}

thead th {
  line-height: 30px;
}

tbody tr {
  line-height: 30px;
}

tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.j12_YjM4_bG9nb19zdHlsZXA {
  width: 30px;
  height: 30px;
  display: inline;
  margin: 0 10px;
}

.to_top {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 30px;
  bottom: 80px;
  cursor: pointer;
  background: url(/style/img/top.png) no-repeat center #fff;
  background-size: 22px;
  transition: all 0.3s;
  z-index: 9999999;
  border: #ccc 1px solid;
  border-radius: 100%;
}

.items-start {
  align-items: flex-start;
}

.pc_only {
  display: block;
}

.h5_only {
  display: none;
}

.input_block {
  display: grid;
  column-gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.hot_team_list {
  display: grid;
  column-gap: 10px;
  row-gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}

img.team_logo {
  width: 50px;
}

.hot_team_list li {
  text-align: center;
  color: crimson;
  line-height: 20px;
  border-radius: 5px;
  border: 1px solid crimson;
}

.hot_team_list li:hover {
  background-color: crimson;
  color: white;
}

.team_vs {
  align-items: start;
  margin: 10px 0;
}
.MatchNameItem {
  border-bottom: 1px solid crimson;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
}

.MatchNameItem:hover {
  background-color: #f8f8f8;
}

.hover:hover {
  background-color: #f8f8f8;
  cursor: pointer;
}

#mask {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

.search_div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--bg-color);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
  flex-direction: column;
  gap: 10px;
}

.search_div {
  flex-direction: row;
}

div[name="tv_list"] .live_list li img {
  width: 100px;
}

.dajfipwjo {
  padding-bottom: 10px;
  border-bottom: 1px;
  border-bottom-style: inset;
}

.hot-teams {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.tab_links {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  text-align: center;
}

.tab_links .cursor-pointer {
  margin-left: 0;
  margin-top: 10px;
  display: inline-block;
}

.tab_links .cursor-pointer:hover {
  color: var(--main-color);
}

.tab_link {
  width: 100px;
}

.live_btn {
  padding: 5px;
  background-color: var(--main-color);
  border-radius: 5px;
  color: white;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
}

.game_time {
  font-size: 13px;
  color: #333;
  min-width: 130px;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.img-link-liveimg {
  min-width: 200px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  width: 200px;
}

.news-article {
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #318483;
}

p.ArtSummary {
  font-size: 12px;
  margin-top: 10px;
  color: #9b8e55;
}

@media only screen and (max-width: 768px) {
  .img-link-liveimg {
    width: 100%;
    height: 50vw;
  }
  .news-article {
    align-items: center;
    flex-direction: column;
  }

  .grid-layout {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .site_container_2 {
    grid-template-columns: repeat(1, 100%);
    max-width: 100%;
  }

  main {
    display: block;
  }
  .agadga {
    width: 85px;
  }
  h1 {
    font-size: 20px;
    text-align: center;
  }
  .match_type_btn {
    font-size: 18px;
  }

  .hedsajofjieo {
    width: 100%;
  }
  .hedsajofjieo h2 {
    display: none;
  }

  .hedsajofjieo ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }

  .tab_links {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .site_container {
    flex-direction: column;
  }

  #gjiqjpaodij {
    width: 100%;
    padding-bottom: 10px;
  }
  .game_time {
    font-size: 3.6vw;
    color: #333;
  }
  .match_time {
    width: 25vw;
    text-align: right;
  }
  ul.flex.flex-row.flex-wrap.text-white.hot_games {
    text-align: center;
    margin-top: 10px;
    overflow: hidden;
    overflow-x: auto;
    padding: 10px 15px;
    margin: 0 0 0 0;
    min-height: 36px;
  }

  ul.flex.flex-row.flex-wrap.text-white.hot_games li {
    width: max-content;
    margin-right: 15px;
    color: var(--third-color);
  }
  .fffffff {
    width: 100%;
  }
  h2 {
    font-size: 18px;
  }

  .team_vs {
    width: 100%;
  }

  .search_div {
    position: absolute;
    bottom: 0;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: unset;
    color: var(--main-color);
    text-align: center;
    font-weight: bold;
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-bottom: 30px;
  }

  .h5_only {
    display: block;
  }

  .pc_only {
    display: none;
  }

  header {
    position: relative;
    background: var(--bg-color);
  }

  nav.site_container {
    row-gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 0;
  }

  header img {
    width: 100%;
  }

  .hot-teams {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .sidebar_link {
    display: inline-block;
    line-height: 30px;
  }

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

  .bread_crumbs_pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  #date-list {
    flex-wrap: wrap;
    gap: 0;
  }

  #date-list li {
    width: calc(100% / 3);
  }

  .pagination {
    flex-wrap: wrap;
  }

  .articale_section {
    flex-direction: column;
  }

  .articale_section img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .match_type {
    text-align: center;
  }

  .tab_content_item {
    width: 100%;
  }

  .articale_section.w-full {
    width: 100%;
    align-items: center;
  }

  .text-999999.single-ellipsis {
    max-width: 100%;
    white-space: unset;
  }

  .MatchNameItem {
    flex-direction: column;
    padding-bottom: 10px;
    width: 100%;
    font-size: 12px;
    justify-content: space-between;
    align-items: center;
  }

  .articale-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .arc_content-h1 {
    font-size: 20px;
  }

  div[name="material_home_zq"] #tabs .tab_d {
    font-size: 18px;
  }

  div[name="tv_list"] .live_list li {
    width: 100%;
  }

  div[name="tv_list"] .live_list li img {
    width: 100px;
  }

  .signal_list .j12_YjM4_aXRlbV9pcA {
    width: 50%;
  }
  .cccc,
  .input_block {
    display: block;
  }
}
