html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(38, 40, 42);
  min-height: 100vh;
  background: linear-gradient(180deg, #111319 0%, #56617F 100%);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open {
  overflow: hidden;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 12px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
  background: none;
}

* {
  box-sizing: border-box;
}

.bread {
  display: flex;
  align-items: center;
  gap: 8px;
  left: 22px;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}
.bread .link {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.bread .link a {
  color: rgba(0, 0, 0, 0.45);
}
.bread .text {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.bg {
  background: rgba(9, 109, 217, 0.05);
  min-height: calc(100vh - 100px);
}
.bg::before {
  content: "";
  display: table;
  clear: both;
}
.bg::after {
  content: "";
  display: table;
  clear: both;
}

.header-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: black;
  height: 60px;
  display: flex;
  flex-direction: column;
}
.header-banner .main {
  width: min(1040px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px auto;
  height: 42px;
}
.header-banner .tabBox {
  display: flex;
  align-items: center;
}
.header-banner .tabBox .header-logo {
  height: 30px;
  margin-right: 20px;
}
.header-banner .tabBox .nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 60px;
}
.header-banner .tabBox .nav .act a {
  color: #ff3b86;
}
.header-banner .tabBox .nav li {
  height: 42px;
  color: #fff;
  line-height: 42px;
  font-size: 14px;
  display: flex;
  cursor: pointer;
}
.header-banner .searchBox {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.header-banner .searchBox input {
  border-radius: 6px;
  border: 0.5px solid rgba(225, 227, 234, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 360px;
  height: 30px;
  padding: 6px 14px;
  background-image: url("../assets/icon/search.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  padding-right: 35px;
}
.header-banner .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
  border-radius: 6px;
  padding: 6px;
  transition: background-color 0.3s ease;
}
.header-banner .hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.header-banner .hamburger span {
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
  margin: 2px 0;
}
.header-banner .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.header-banner .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header-banner .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.header-banner .mobile-nav-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.header-banner .mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}
.header-banner .mobile-nav-overlay .mobile-nav {
  width: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 15px 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header-banner .mobile-nav-overlay .mobile-nav .nav-item {
  width: 100%;
}
.header-banner .mobile-nav-overlay .mobile-nav .nav-item a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.header-banner .mobile-nav-overlay .mobile-nav .nav-item a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header-banner .mobile-nav-overlay .mobile-nav .nav-item.act a {
  color: #ff3b86;
  background: rgba(255, 59, 134, 0.15);
  font-weight: 500;
}
.header-banner .mobile-nav-overlay .mobile-nav .nav-item:last-child a {
  border-bottom: none;
}
.header-banner .mobile-nav-overlay.active .mobile-nav {
  transform: translateY(0);
}

.head-height {
  height: 60px;
  width: 100%;
}

.subTitle {
  width: min(1040px, 100%);
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 8px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}

.main-container {
  width: min(1040px, 100%);
  margin: 40px auto;
  margin-bottom: 50px;
}
.main-container .container-item {
  width: 100%;
  margin-bottom: 30px;
}
.main-container .container-item .container-item-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-container .container-item .container-item-title h3 {
  border-bottom: 2px solid #ff3b86;
  padding-bottom: 10px;
  font-size: 18px;
}
.main-container .container-item .container-item-title .moreBtn {
  border-radius: 4.5px;
  border: 0.375px solid #f5f5f5;
  height: 22.5px;
  padding: 0 10px;
  font-size: 9px;
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}
.main-container .container-item .container-item-title .moreBtn img {
  width: 11px;
  height: 11px;
}
.main-container .container-item .video-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 20px 12px;
}
.main-container .container-item .video-item {
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.main-container .container-item .video-item:hover {
  transform: translate(0, -5px);
}
.main-container .container-item .video-item .imgBox {
  position: relative;
  aspect-ratio: 198/125;
  overflow: hidden;
  border-radius: 5px;
}
.main-container .container-item .video-item .imgBox img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-container .container-item .video-item .imgBox .timeLabelBg {
  position: absolute;
  height: 25%;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  z-index: 100;
}
.main-container .container-item .video-item .imgBox .timeLabel {
  position: absolute;
  color: #fff;
  text-align: center;
  font-size: 12px;
  height: 18px;
  padding: 0px 5px;
  font-weight: 400;
  line-height: 18.193px;
  border-radius: 5px;
  bottom: 6px;
  right: 6px;
}
.main-container .container-item .video-item .video-title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 98%;
  margin: 0 auto;
  margin-top: 5px;
}

footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #1E1E24;
  z-index: 9999999999;
}
footer .pBox {
  width: 100%;
}
footer .pBox .pc-footer-mobile {
  display: none;
}
footer .pBox .pc-footer-text {
  display: block;
}
footer .pBox p {
  color: #fff;
  width: min(1040px, 100%);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding: 30px 0;
  margin: 0 auto;
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: rgb(0, 102, 255);
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #999;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li a.active {
  background: #ff3b86;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}

.resultText {
  width: min(1040px, 100%);
  margin: 30px auto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  padding-left: 5px;
}

.videoPlayBox {
  width: min(1040px, 100%);
  margin: 0 auto;
}
.videoPlayBox .videoBox {
  padding: 10px 10px 0 10px;
  background-color: rgba(0, 0, 0, 0.3);
}
.videoPlayBox .videoBox video {
  width: 100%;
}
.videoPlayBox .videoBox .iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.videoPlayBox .videoBox .iframeBox .iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.videoPlayBox .menuright {
  width: 100%;
  box-sizing: border-box;
  padding: 1px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.videoPlayBox .menuright .describe {
  margin-bottom: 20px;
  padding: 10px 0;
}
.videoPlayBox .menuright .describe h3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}
.videoPlayBox .menuright .correlationvideo {
  display: flex;
  flex-direction: column;
}
.videoPlayBox .menuright .correlationvideo h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 14px;
}
.videoPlayBox .menuright .correlationvideo .videoBox1 ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.videoPlayBox .menuright .correlationvideo .videoBox1 ul li {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.videoPlayBox .menuright .correlationvideo .videoBox1 ul li:hover {
  transform: translate(0, -5px);
}
.videoPlayBox .menuright .correlationvideo .videoBox1 ul li .imgBox {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 5px;
}
.videoPlayBox .menuright .correlationvideo .videoBox1 ul li .imgBox img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: cover;
}
.videoPlayBox .menuright .correlationvideo .videoBox1 ul li p {
  color: #fff;
  font-size: 12px;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin: 0 auto;
  text-align: center;
  margin-top: 5px;
}

@media (max-width: 1040px) {
  .main-container {
    padding: 0 20px;
  }
  .header-banner .main {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .bread {
    margin-bottom: 20px;
  }
  .main-container {
    padding: 0 8px;
    margin: 20px auto;
  }
  .head-height {
    height: 60px;
  }
  .header-banner {
    height: 60px;
  }
  .header-banner .main {
    gap: 8px;
    padding: 0 12px;
  }
  .header-banner .main .tabBox .header-logo {
    height: 26px;
    margin-right: 8px;
  }
  .header-banner .main .tabBox .desktop-nav {
    display: none;
  }
  .header-banner .main .searchBox {
    flex: 1;
    margin-right: 8px;
  }
  .header-banner .main .searchBox input {
    width: 100%;
    min-width: 0;
  }
  .header-banner .main .searchBox .hamburger {
    display: none;
  }
  .header-banner .main .hamburger {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }
  .main-container .container-item .container-item-title h3 {
    font-size: 15px;
  }
  .main-container .container-item .video-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pagination-container {
    margin-top: 15px;
    transform: scale(0.8);
  }
  .videoPlayBox .menuright .describe {
    margin-bottom: 10px;
    padding: 5px 0;
  }
  .videoPlayBox .menuright .correlationvideo .videoBox1 ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer .pBox p {
    font-size: 12px;
  }
  footer .pBox .pc-footer-mobile {
    display: block;
  }
  footer .pBox .pc-footer-text {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bread {
    margin-bottom: 20px;
  }
  .main-container {
    padding: 0 8px;
  }
  .header-banner {
    height: 60px;
  }
  .header-banner .main {
    gap: 10px;
    padding: 0 12px;
  }
  .header-banner .main .tabBox .header-logo {
    height: 26px;
    margin-right: 10px;
  }
  .header-banner .main .tabBox .desktop-nav {
    display: none;
  }
  .header-banner .main .searchBox {
    flex: 1;
    margin-right: 10px;
  }
  .header-banner .main .searchBox input {
    width: 100%;
    min-width: 0;
  }
  .header-banner .main .searchBox .hamburger {
    display: none;
  }
  .header-banner .main .hamburger {
    display: flex;
    flex-shrink: 0;
  }
  .main-container .container-item .video-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .videoPlayBox .menuright .correlationvideo .videoBox {
    flex: 1;
    overflow: visible;
  }
  .videoPlayBox .menuright .correlationvideo .videoBox ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.detail-header .main {
  width: min(1040px, 100%);
}

.detailBody {
  background: #111319 !important;
}

/*# sourceMappingURL=index.css.map */
