

:root{

  --primary-color: #1c8c15;

  --background-color: #000000;

  --foreground-color: #171a1f;

  --foreground-color-t1: #1a1e23;

  --foreground-color-t2: #13151a;


  --foreground-border-color: #1e2228;
  --background-border-color: #333;


  --text-color: #f9f9f9;
  --text-color-t1: #f6f6f6;
  --text-color-t2: #e0e0e0;
  --text-color-t3: #c0c0c0;
  --text-color-t4: #a0a0a0;
  --text-color-t5: #808080;

  --border-radius-sm: 2px;
  --border-radius-md: 4px;
  --border-radius-lg: 6px;
  --border-radius-xl: 8px;
  --border-radius-oval: 20px;
  --border-radius-circle: 50%;
}
.mt2 {
  margin-top: 2px;
}

.mt4 {
  margin-top: 4px;
}

.mt6 {
  margin-top: 6px;
}

.mt8 {
  margin-top: 8px;
}

.mt10 {
  margin-top: 10px;
}

.mt12 {
  margin-top: 12px;
}

.mt14 {
  margin-top: 14px;
}

.mt16 {
  margin-top: 16px;
}
@font-face {
  font-family: Time;
  src: url("../font/DS-DIGI.TTF");
}

html {
  background-color: var(--background-color);
  color: var(--text-color-t1);
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-scroll::-webkit-scrollbar {
  display: none;
}

.no-scroll::-webkit-scrollbar-thumb {
  display: none;
}

.no-scroll::-webkit-scrollbar-track {
  display: none;
}

.blinking-dot {
  position: absolute;
  top: 2px;
  right: -2px;
  width: 1.6px;
  height: 4px;
  border-radius: 50%;
  animation: blink 1s infinite;
  background-color: #fff;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.wrapper {
  width: calc(100% - 32px);
  max-width: 1330px;

  margin: 0 auto;
  transition: 0.3s ease;
}
.page-container {
  margin-top: 10px;
}
.page-container .page-info {
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-container .page-info .page-title h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color-t1);
  font-family: "Oswald";
  text-transform: uppercase;
}
.page-container .page-info .page-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-container {
  font-size: 14px;
  margin: 12px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  align-items: center;
  display: flex;
  font-family: "Roboto";
  display: inline-block;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-item + .breadcrumb-item:before {
  color: var(--text-color-t5);
  content: "›";
  font-size: 14px;
  margin: 0 8px;
}

.breadcrumb-item a {
  color: var(--text-color-t3);
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item.active {
  color: var(--text-color-t3);
  pointer-events: none;
}

.ads-banner {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 4px;
  flex-direction: column;
}
.ads-banner .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 60px;
}

.ads-banner .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
}
.ads-banner .item a.mobile {
  display: none;
}
.ads-banner .item a img {
  width: 100%;
  height: 100%;
}
.ads-banner .item .tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  padding: 1px 6px;

  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-top-left-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
}

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: var(--foreground-color);
  color: var(--text-color-t1);
  border-radius: var(--border-radius-xl);
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

.login-dialog {
  width: 400px !important;
}
.dplayer-video-wrap .dplayer-video {
  height: 550px !important;
  object-fit: fill;
}
@media screen and (max-width: 1024px) {
  .ads-banner .item a.pc {
    display: none;
  }
  .ads-banner .item a.mobile {
    display: block;
  }
  .page-container {
    margin-top: 8px;
  }
  .wrapper {
    width: calc(100% - 16px);
  }
  .breadcrumb-container {
    margin: 8px 0;
  }
  .breadcrumb-item {
    max-width: 128px;
  }
  .dplayer-video-wrap .dplayer-video {
    height: 230px !important;
  }

  .page-container .page-info {
    margin: 8px 0;
  }

  .page-container .page-info .page-title h1 {
    font-size: 18px;
  }
}


.select-date{
  display: flex;
  align-items: center;
  justify-content: center;

  height: 32px;

  color: var(--text-color-t1);
  border-radius: var(--border-radius-xl);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "oswald", sans-serif;
}




.tabbar-container {
    height: 50px;
    display: none;
    transition: 0.3s ease;
  }

  .tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--foreground-color);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .tabbar .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    min-width: 20%;
  }
  .tabbar .item span.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
  }
  .tabbar .item span.icon svg {
    width: 100%;
    height: 100%;
    fill: var(--text-color-t1);
  }

  .tabbar .item span.title {
    color: var(--text-color-t2);
    font-size: 12px;
    text-decoration: none;
    font-family: "oswald", sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tabbar .item.active span.title {
    color: var(--primary-color);
  }
  .tabbar .item.active span.icon svg {
    fill: var(--primary-color);
  }

  @media screen and (max-width: 1024px) {
    .tabbar-container {
      display: block;
    }
  }



  
.about {
  padding: 8px 24px 24px 24px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: var(--foreground-color);
  border-radius: var(--border-radius-xl);
}

.about h1,
.about h2,
.about h3 {
  font-size: 16px;
  color: var(--text-color-t1);
  font-weight: 500;
  margin: 10px 0;
  font-family: "Oswald", sans-serif;
}
.about ul {
  list-style-type: disc;
  padding-left: 1.6rem;
    line-height: 1.4;
      color: var(--text-color-t3);
}

.about strong {
  color: var(--text-color-t3);
  font-weight: 500;
}

.about p {
  color: var(--text-color-t3);
  line-height: 1.4;
}


@media screen and (max-width: 1024px) {
  .about{
    padding: 8px 16px;
  }
}