<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.CRS-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 4.5;
  background-color: #1e1e1e; 
  overflow: hidden;
}


@supports not (aspect-ratio: 1 / 1) {
  .CRS-carousel {
    height: 280px; 
  }
}


@media (max-width: 1024px) {
  .CRS-carousel {
    aspect-ratio: 3 / 2;
  }

  @supports not (aspect-ratio: 1 / 1) {
    .CRS-carousel {
      height: 320px; 
    }
  }
}


.CRS-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}




.CRS-slide {
    flex: 0 0 100%;
    position: relative;
}


.CRS-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.pc-img {
    display: block;
}
.mobile-img {
    display: none;
}


@media (max-width: 1024px) {
    .pc-img {
        display: none;
    }
    .mobile-img {
        display: block;
    }

    .CRS-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


.CRS-prev, .CRS-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3); 
    border: none;
    color: white;
    font-size: 24px;
    width: 50px; 
    height: 40px;
    border-radius: 6px; 
    cursor: pointer;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}


.CRS-prev:hover, .CRS-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}


.CRS-prev {
    left: 15px;
}


.CRS-next {
    right: 15px;
}


.CRS-progress-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}


.CRS-progress-bar {
    width: 40px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4); 
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}


.CRS-progress-bar.active {
    background-color: white;
}
</pre></body></html>