.kv .hole {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv i {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;

  border-radius: 140px;
  opacity: 0;
  animation-name: scale;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.kv i:nth-child(1) {
  animation-delay: 0.3s;
}

.kv i:nth-child(2) {
  animation-delay: 0.6s;
}

.kv i:nth-child(3) {
  animation-delay: 0.9s;
}

.kv i:nth-child(4) {
  animation-delay: 1.2s;
}

.kv i:nth-child(5) {
  animation-delay: 1.5s;
}

.kv i:nth-child(6) {
  animation-delay: 1.8s;
}

.kv i:nth-child(7) {
  animation-delay: 2.1s;
}

.kv i:nth-child(8) {
  animation-delay: 2.4s;
}

.kv i:nth-child(9) {
  animation-delay: 2.7s;
}

.kv i:nth-child(10) {
  animation-delay: 3s;
}

@keyframes scale {
  0% {
    transform: scale(2);
    opacity: 0;
    box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1) translate(0px, -5px);
    opacity: 1;
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: scale(0.1) translate(0px, 5px);
    opacity: 0;
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0);
  }
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.4s, transform 0.4s;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
  transform: translateY(30px);
}
.fade-enter-to,
.fade-leave-from {
  opacity: 1;
  transform: translateY(0);
}

.custom-checkbox.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.custom-checkbox.disabled .checkmark {
  background: #ccc;
  border-color: #aaa;
}

.monitor-popup {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.monitor-popup__content {
  background: #181818;
  border-radius: 20px;
  padding: 32px 24px 24px 24px;
  min-width: 700px;
  max-width: 90vw;
  color: #fff;
  position: relative;
}
.monitor-popup__content h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.monitor-popup__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.monitor-popup__close {
  position: absolute;
  right: 24px;
  top: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.monitor-popup__list {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.monitor-popup__item {
 padding: 10px;
}
.monitor-popup__item > div{
  background: #222;
  border: 1px solid #1ec6d9;
  border-radius: 8px;
  padding: 16px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.monitor-popup__item img {
  width: 180px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}
.monitor-popup__name {
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}
.monitor-popup__tags {
  margin-bottom: 12px;
}
.monitor-popup__tags span {
  display: inline-block;
  background: #333;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  margin: 0 2px 2px 0;
  font-size: 0.9em;
}
.monitor-popup__btns {
  display: flex;
  gap: 8px;
}
.monitor-popup__btns a {
  background: #1ec6d9;
  color: #fff;
  border-radius: 4px;
  padding: 6px 16px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.2s;
  text-align: center;
}
.monitor-popup__btns a:hover {
  background: #0e8fa7;
}

.compare-bar {
  position: fixed;
  left: 0;
  bottom: 80px;
  z-index: 1000;
  background: #f3f3f3;
  color: #222;
  border-radius: 0 8px 8px 0;
  padding: 16px 8px 16px 8px;
  font-size: 1.2em;

  writing-mode: vertical-rl;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-bar__count {
  display: inline-block;
  background: #ccc;
  color: #222;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 1em;
  margin-top: 8px;
  font-weight: normal;
}

.compare-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #ededed;
  z-index: 2000;
  padding: 32px 0 32px 0;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}
.compare-popup__close {
  position: absolute;
  right: 32px;
  top: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
}
.compare-popup__title {
  font-size: 1.3em;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-align: left;
  width: 90vw;
  max-width: 1200px;
}
.compare-popup__list {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
}
.compare-popup__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.compare-popup__item img {
  width: 160px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}
.compare-popup__name {
  font-size: 1.1em;
  margin-top: 8px;
  color: #222;
  text-align: center;
}
.compare-popup__btn {
  position: absolute;
  right: 48px;
  bottom: 32px;
  margin-top: 0;
  background: #fff;
  border-radius: 6px;
  border: none;
  padding: 10px 32px;
  font-size: 1.1em;
  font-weight: bold;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.compare-popup__remove {
  display: block;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  color: #222;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  letter-spacing: 1px;
  padding: 0;
  padding: 10px 32px;
  background: #fff;
  border-radius: 6px;
  transition: 0.7s;
  opacity: 0;
  pointer-events: none;
}
.compare-popup__remove-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.7s;

  background: #00000000;
}
.compare-popup__item:hover .compare-popup__remove {
  pointer-events: auto;
  opacity: 1;
}
.compare-popup__item:hover .compare-popup__remove-wrap {
  background: #00000066;
}

/* ��閧𧞄 */
.compare-slide-enter-active,
.compare-slide-leave-active {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}
.compare-slide-enter-from,
.compare-slide-leave-to {
  transform: translateY(100%);
  opacity: 0;
}
.compare-slide-enter-to,
.compare-slide-leave-from {
  transform: translateY(0);
  opacity: 1;
}

.compare-dialog {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-dialog__content {
  background: #181818;
  border-radius: 20px;
  padding: 32px 32px 32px 32px;
  width: 95vw;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90vh;
  overflow-y: auto;
}
.compare-dialog__close {
  position: absolute;
  right: 32px;
  top: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 99;
}
.compare-dialog__products {
  display: flex;
  gap: 48px;
  margin-bottom: 24px;
  justify-content: center;
}
.compare-dialog__product {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.compare-dialog__product img {
  width: 160px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}
.compare-dialog__name {
  font-size: 1.1em;
  margin-top: 8px;
  color: #fff;
  text-align: center;
}
.compare-dialog__tables {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.compare-dialog__table table {
  border-collapse: collapse;
  width: 260px;
  background: #222;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  font-size: 1em;
}
.compare-dialog__table th,
.compare-dialog__table td {
  border: 1px solid #444;
  padding: 6px 10px;
  text-align: center;
}
.compare-dialog__table th {
  background: #181818;
  color: #fff;
  font-weight: bold;
}
.compare-dialog__table tr:nth-child(even) {
  background: #232323;
}

/* 瘥磰�閬𣇉�� modelBox 璅��� */
.compare-modelbox-flex {
  display: flex;
  gap: 32px;

}
.modelBox {
  background: #18181c;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0008;
  padding: 32px 24px 24px 24px;
  margin-bottom: 24px;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 23%;
}
.modelBox__close {
  position: absolute;
  top: 16px;
  left: 95%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
  background: #fff8;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modelBox__close:hover {
  background: #000;
}
.modelBox img {
  width: 60%;
  height: auto;
  margin: auto;
  margin-bottom: 12px;
  display: block;
}
.modelBox__name {
  color: #c7aaff;
  font-size: 1.1rem;
  margin-bottom: 24px !important;
  text-align: center;
  display: block;
}
.modelBox__list {
  width: 100%;
  margin-bottom: 8px;
  border-bottom: 1px solid #444;
  padding-bottom: 12px;
}
.modelBox__list-rowBox {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}
.modelBox__list-rowBox > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  font-size: 1rem;
  width: 25%;
}
.colBox {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fourth-title {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 2px;
}
.main-text {
  color: #ff2d55;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 900px) {
  .compare-modelbox-flex {
    flex-direction: column;
    gap: 16px;
  }
  .modelBox {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 1400px) {
  .modelBox{
    width: 50%;
  }
  .compare-modelbox-flex {
    display: block !important;
    padding: 0 0 24px 0;
  }
}

/* slick custom arrow for compare slider */
.compare-slider .custom-slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 1;
}
.compare-slider .custom-slick-arrow::before {
  display: none;
}
.compare-slider .slick-prev.custom-slick-arrow {
  left: -24px;
}
.compare-slider .slick-next.custom-slick-arrow {
  right: -24px;
}
.compare-slider .custom-slick-arrow svg {
  display: block;
}
.compare-slider .custom-slick-arrow circle {
  fill: rgba(0, 0, 0, 0.4);
}
.compare-slider .custom-slick-arrow path {
  stroke: #fff;
}
@media (max-width: 900px) {
  .compare-slider .custom-slick-arrow {
    left: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }
  .compare-slider .slick-prev.custom-slick-arrow {
    left: 0;
  }
  .compare-slider .slick-next.custom-slick-arrow {
    right: 0;
  }
}

.slick-prev {
  right: auto !important;
  left: 0 !important;
}
.slick-next{
  right: 0 !important;
  left: auto !important;
}

/* 蝘駁膄�典�� slick 蝵桐葉嚗�蘨靽萘�� 900~1400px �拍���蝵桐葉 */
@media (min-width: 900px) and (max-width: 1400px) {
  .compare-slider.center-2-slides .slick-track {
    display: flex !important;
    justify-content: center;
    align-items: stretch;
  }
  .compare-slider.center-2-slides .slick-slide {
    float: none !important;
    display: flex !important;
    justify-content: center;
    align-items: stretch;
  }
}

@media (max-width: 900px) {
  .compare-popup__list{
    flex-wrap: wrap;
    gap: 10px;
  }
  .compare-popup__item{
    width: 40%;
  }
  .compare-popup__btn{
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    margin-bottom: 0;
  }
}

@media screen and ( max-width: 1600px ){
  .filter__options label{
    font-size: 14px !important;  
    padding-bottom: 14px !important;
  }
  .filter__title{
    font-size: 1.5em !important;
  }
  .filter__options{
    margin-top: 10px !important;
  }
  .filter__options label{
    font-size: 14px !important;  
    padding-bottom: 14px !important;
  }
}



.productcard__fps-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
}
.fps-header-row, .fps-body-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.fps-header-cell, .fps-body-cell {
  flex: 1 1 0;
  padding: 6px 8px;
  text-align: center;
  border-bottom: 1px solid #1ec6d9;
  font-size: 1em;
  min-width: 80px;
  box-sizing: border-box;
}
.fps-header-cell {
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fps-body-cell {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fps-header-label {
  display: none;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2px;
}


@media (max-width: 991px) {
  
  .productcard__table {
    width: 100% !important;
    max-width: 100vw !important;
    table-layout: fixed !important;
    word-break: break-all !important;
    overflow-x: auto !important;;
    display: block !important;
  }
  .productcard__table thead,
  .productcard__table tbody,
  .productcard__table tr {
    display: table important;
    width: 100% important;
    table-layout: fixed important;;
  }
  .productcard__fps-table {
    display: block !important;
  }
  .fps-header-row, .fps-body-row {
    display: block !important;
    width: 100% !important;
  }
  .fps-header-cell, .fps-body-cell {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border-bottom: none !important;
    border-right: none !important;
    text-align: left !important;
    padding: 8px 0 !important;
  }

  .fps-body-row {
    margin-bottom: 12px !important;
    border-bottom: 1px solid #1ec6d9 !important;
    background: #18181c !important;
    padding: 8px 0 !important;
  }
  .fps-body-row .fps-body-cell:first-child {
    font-weight: bold;
    color: #fff;
    background: none;
    margin-bottom: 4px;
  }
  .fps-header-cell{
    display: none !important;
  }
  .fps-header-label {
    display: inline-block;
    margin-right: 8px;
  }
  .fps-body-cell{
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .fps-header-label{
    width: 50%;
    display: block;

  }
  .fps-body-cell-text{
    width: 50%;
    display: block;
  }
}

@media (max-width: 991px) {
  #video-canvas {
    min-height: 800px !important;
    width: 100vw !important;
    display: block;
  }
}

.benchmark-help-popout {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.benchmark-help-popout__content {
  background: #232323;
  border-radius: 24px;
  padding: 4% 5% 3% 5%;
  color: #1ec6d9;
  font-size: 1em;
  max-width: 900px;
  width: 90vw;
  box-shadow: 0 4px 32px #000a;
  text-align: center;
  position: relative;
}
.benchmark-help-popout__close {
  position: absolute;
  top: 18px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 600px) {
  .benchmark-help-popout__content {
    font-size: 1em;
    padding: 24px 8px 24px 8px;
  }
  .benchmark-help-popout__close {
    right: 12px;
    top: 8px;
    font-size: 1.5em;
  }
}

.slick-next:before, .slick-prev:before {
  display: none !important;
}
.slick-next, .slick-prev{
  z-index: 50;
}

@media (max-width: 767px) {
  .monitor-popup__content {
    min-width: auto;
  }
}