@charset "UTF-8";
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: #edeff0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  background: #111111;
  border-bottom: 1px solid #333333;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 65px;
}
@media (min-width: 769px) {
  .header-container {
    flex-direction: row;
    height: 65px;
  }
}

.header-top {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop {
  display: flex !important;
}

.heder_input {
  width: 100%;
  justify-content: space-between;
  display: flex;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 5px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex !important;
  }
}
.hamburger-menu .hamburger-line {
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger-menu:hover .hamburger-line {
  background: #333333;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.mobile-sidebar .mobile-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.mobile-sidebar .mobile-sidebar-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #1a1a1a;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-sidebar.active .mobile-sidebar-content {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #333333;
  background: #111111;
}
.mobile-sidebar-header .mobile-logo {
  height: 24px;
}
.mobile-sidebar-header .close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sidebar-header .close-btn:hover {
  color: #333333;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav .mobile-nav-item {
  border-bottom: 1px solid #333333;
}
.mobile-nav .mobile-nav-item a {
  display: block;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.mobile-nav .mobile-nav-item a:hover {
  background: #000000;
  color: #333333;
}
.mobile-nav .mobile-nav-item.active a {
  color: #ffffff;
  background: rgb(0, 102, 255);
  font-weight: 600;
  position: relative;
}
.mobile-nav .mobile-nav-item.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.8);
}
.mobile-nav .mobile-nav-item.active a:hover {
  background: rgb(0, 81.6, 204);
  color: #ffffff;
}

body.sidebar-open {
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 30px;
  object-fit: contain;
}

.logo h1 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 0.5rem;
}

.nav-item {
  color: #cccccc;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: #ffffff;
  background: #1a1a1a;
}

.nav-item.active {
  color: #ffffff;
  background: #333333;
}

.search-box {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 6px;
  overflow: hidden;
  width: 240px;
}

.search-box input {
  background: transparent;
  border: none;
  padding: 0.6rem 0.8rem;
  color: #ffffff;
  width: 100%;
  font-size: 0.9rem;
  flex: 1;
}

.search-box input::placeholder {
  color: #888888;
}

.search-box input:focus {
  outline: none;
}

.video-carousel {
  max-width: 1440px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.carousel-container {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 1.5rem;
}

.carousel-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  width: 100%;
  transition: transform 0.3s ease;
}

.video-carousel-item.cloned {
  flex: 0 0 calc((100% - 80px) / 6);
}

.video-carousel-item {
  flex: 0 0 calc((100% - 80px) / 6);
  background: #000000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-carousel-item:hover {
  transform: translateY(-4px);
  border-color: #333333;
}

.video-carousel-item .video-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.video-carousel-item .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-carousel-item:hover .video-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-carousel-item:hover .play-overlay {
  opacity: 1;
}

.video-carousel-item .duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.video-carousel-item p {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem;
  margin: 0;
  line-height: 1.8;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}

@media (max-width: 768px) {
  .video-carousel {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }
  .carousel-container {
    padding: 1rem;
    border-radius: 8px;
  }
  .carousel-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .video-carousel-item,
  .video-carousel-item.cloned {
    flex: 0 0 calc((100% - 8px) / 2);
  }
  .carousel-track {
    gap: 0.5rem;
  }
  .video-carousel-item h4 {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .video-carousel-item .duration {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
  .play-overlay {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .video-carousel {
    padding: 0 1.5rem;
  }
  .carousel-container {
    padding: 1.25rem;
  }
  .carousel-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
}
.banner-ad {
  max-width: 1440px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.banner-ad .ad-content {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.banner-ad .ad-content h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.main-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  display: flex;
  gap: 2rem;
  align-items: start;
}

.detail-wrapper {
  max-width: 1200px;
}

.detail-wrapper .banner-ad {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.main-content {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: 100px;
  width: 300px;
  flex-shrink: 0;
}
.sidebar:empty {
  display: none;
}
.sidebar.hidden {
  display: none;
}

.side-ad {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.side-ad h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ad-placeholder {
  background: #000000;
  border: 2px dashed #333333;
  border-radius: 6px;
  color: #888888;
  font-size: 0.9rem;
}

.video-section {
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.more-link {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.more-link:hover {
  color: #ffffff;
  background: #1a1a1a;
}

.sort-options select {
  background: #1a1a1a;
  border: 1px solid #333333;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.video-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: #555555;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-btn {
  display: none;
}

.duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.hot-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #ffffff;
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.video-info {
  padding: 0.5rem;
}

.video-info h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.video-meta,
.video-desc,
.video-stats {
  display: none;
}

.filter-bar {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  color: #ffffff;
  font-weight: 500;
  min-width: 60px;
  font-size: 0.95rem;
}

.filter-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #333333;
  color: #cccccc;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #000000;
  color: #ffffff;
}

.filter-btn.active {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
}

.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: rgb(0, 102, 255);
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
@media (max-width: 768px) {
  .pagination-container {
    transform: scale(0.8);
    margin: 20px auto 15px;
  }
}

.page-dots {
  color: #888888;
  padding: 0.75rem 0.5rem;
}

.search-result-header {
  margin-bottom: 2rem;
}

.search-result-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.search-info {
  color: #cccccc;
  font-size: 1rem;
  font-weight: 500;
}

.search-info strong {
  color: #ffffff;
  font-weight: 700;
}

.hot-search {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-tag {
  background: transparent;
  border: 1px solid #333333;
  color: #cccccc;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.search-tag:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
}

.hot-movies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hot-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hot-item:hover {
  background: #000000;
}

.hot-item img {
  width: 50px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

.hot-info {
  flex: 1;
}

.hot-info h5 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hot-info p {
  color: #cccccc;
  font-size: 0.8rem;
  margin: 0;
}

.video-player-section {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.video-player {
  margin-bottom: 1.5rem;
}

.video-player video {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: black;
}

.video-details .video-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.video-details .video-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.video-details .video-meta span {
  background: #1a1a1a;
  color: #cccccc;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #333333;
}

.video-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #cccccc;
  font-weight: 500;
}

.video-description {
  margin-bottom: 2rem;
}

.video-description h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.video-description p {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 400;
}

.video-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn.primary {
  background: #333333;
  color: #ffffff;
}

.action-btn.primary:hover {
  background: #222222;
}

.action-btn:not(.primary) {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333333;
}

.action-btn:not(.primary):hover {
  background: #000000;
}

.footer {
  background: #1a1a1a;
  border-top: 1px solid #333333;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: #cccccc;
  font-weight: 500;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-link:hover {
  color: #ffffff;
  background: #000000;
  border-color: #333333;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #333333;
  margin: 1.5rem 0;
}

.video-count {
  color: #cccccc;
  font-size: 0.95rem;
  font-weight: 500;
}

.video-count strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1500px) {
  .main-wrapper {
    padding: 0 1rem;
  }
  .banner-ad {
    padding: 0 1rem;
  }
  .header-container {
    padding: 0 1rem;
  }
}
@media (max-width: 1200px) {
  .container {
    flex-direction: column;
    gap: 2rem;
  }
  .sidebar {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 768px) {
  .banner-ad {
    padding: 0 1rem;
  }
  .header-container {
    flex-direction: row;
    flex-wrap: nowrap;
    height: auto;
    padding: 0.5rem 0.5rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    flex-shrink: 0;
    order: 0;
  }
  .header-top {
    flex-shrink: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    order: 1;
    gap: 0.5rem;
    min-width: 0;
  }
  .nav-mobile {
    width: 100%;
    order: 2;
    margin-top: 0.5rem;
  }
  .nav-desktop {
    display: none !important;
  }
  .hamburger-menu {
    display: flex !important;
  }
  .nav-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  .search-box {
    width: 260px;
    flex-shrink: 1;
    max-width: 70%;
  }
  .carousel-slide {
    padding: 1rem;
  }
  .slide-info h3 {
    font-size: 1.5rem;
  }
  .slide-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .play-carousel-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .prev-btn {
    left: 0.5rem;
  }
  .next-btn {
    right: 0.5rem;
  }
  .main-container {
    padding: 1rem;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-card {
    width: 100%;
  }
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pagination {
    flex-wrap: wrap;
  }
  .video-details .video-title {
    font-size: 1.8rem;
  }
  .video-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links {
    margin-bottom: 1rem;
  }
  .footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .footer-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }
  .footer-container {
    padding: 1rem;
    font-size: 0.8rem;
  }
}
.iframeBox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.iframeBox .iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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