@charset "UTF-8";
@keyframes modal-overlay-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes modal-button-spinner {
  to {
    transform: rotate(360deg);
  }
}
body {
  background-color: #f5f5f5;
}

.detail-page-index {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.detail-page-index .page-index-content {
  flex: 1;
  margin: auto;
  width: 1270px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 88px;
}
.detail-page-index .page-index-content .game-detail-header {
  padding-top: 12px;
}
.detail-page-index .page-index-content .game-detail-header .header-classification {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
.detail-page-index .page-index-content .game-detail-header .header-classification .classification-line {
  color: #909399;
  font-weight: 400;
}
.detail-page-index .page-index-content .game-detail-header .header-classification .classification-name {
  color: #000000;
  cursor: pointer;
  white-space: nowrap;
}
.detail-page-index .page-index-content .game-detail-header .header-classification .classification-name:nth-last-child(1) {
  color: #999999;
  cursor: initial;
}
.detail-page-index .page-index-content .game-detail-header .header-classification .classification-name:not(:last-child):hover {
  color: #EA8101;
}
.detail-page-index .page-index-content .game-detail-header .header-classification .classification-name:nth-last-child(1) {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-page-index .page-index-content .game-detail-header .header-game-name {
  margin-top: 12px;
  color: #000000;
  font-size: 40px;
  font-weight: 600;
}
.detail-page-index .page-index-content .game-detail-header .header-game-rate {
  margin-top: 8px;
  color: #000000;
  font-size: 16px;
}
.detail-page-index .page-index-content .game-detai-content {
  display: flex;
  gap: 40px;
}
.detail-page-index .page-index-content .game-detai-content .content-left {
  flex: 1;
  overflow: hidden;
  width: 100%;
}
.detail-page-index .page-index-content .game-detai-content .content-left .carousel .media {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}
.detail-page-index .page-index-content .game-detai-content .content-left .carousel .media .player,
.detail-page-index .page-index-content .game-detai-content .content-left .carousel .media .plyr--video {
  height: 100%;
  width: 100%;
}
.detail-page-index .page-index-content .game-detai-content .content-left .carousel .video {
  position: relative;
}
.detail-page-index .page-index-content .game-detai-content .content-left .carousel .video .play-icon {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(149, 149, 149);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding-left: 2px;
  transform: translate(-50%, -50%);
}
.detail-page-index .page-index-content .game-detai-content .content-left .carousel .video .icon-svg {
  height: 22px;
  width: 22px;
  fill: #fff;
}
.detail-page-index .page-index-content .game-detai-content .content-right {
  width: 320px;
}
.detail-page-index .page-index-content .game-desc {
  margin-top: 16px;
  position: relative;
  max-height: 846px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.detail-page-index .page-index-content .game-desc .display-more,
.detail-page-index .page-index-content .game-desc .display-few {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100px;
  background: linear-gradient(rgba(245, 245, 245, 0), rgb(245, 245, 245));
  width: 100%;
  color: rgb(234, 129, 1);
  font-size: 16px;
  cursor: pointer;
}
.detail-page-index .page-index-content .game-desc .display-more:hover,
.detail-page-index .page-index-content .game-desc .display-few:hover {
  text-decoration: underline;
}
.detail-page-index .page-index-content .game-desc .display-more .display-icon,
.detail-page-index .page-index-content .game-desc .display-few .display-icon {
  transform: rotate(90deg);
}
.detail-page-index .page-index-content .game-desc .display-few {
  position: initial;
  height: auto;
  margin-top: 16px;
}
.detail-page-index .page-index-content .game-desc .display-few .display-icon {
  transform: rotate(-90deg);
}
.detail-page-index .page-index-content .game-configuration {
  margin-top: 16px;
  background-color: #eee;
  border-radius: 12px;
  padding: 32px 60px;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-header {
  display: flex;
  align-items: center;
  color: #A8ABB2;
  font-size: 16px;
  font-weight: 500;
  gap: 40px;
  padding-bottom: 20px;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-header .tab-item {
  position: relative;
  cursor: pointer;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-header .selected {
  color: #EA8101;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-header .selected::after {
  position: absolute;
  content: "";
  bottom: -10px;
  height: 2px;
  width: 100%;
  left: 0;
  background-color: #EA8101;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-content {
  display: none;
  gap: 4px;
  flex-direction: column;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-content .minimum {
  color: #73767A;
  font-weight: 600;
  font-size: 16px;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-content .item {
  margin-top: 12px;
  color: rgba(34, 34, 34, 0.6);
  font-size: 16px;
}
.detail-page-index .page-index-content .game-configuration .configuration-tab-content .item .value {
  color: rgb(34, 34, 34);
}
.detail-page-index .game-right {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-page-index .game-right .favorite {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 0 24px;
  height: 48px;
  border-radius: 8px;
  background-color: #fff;
  color: #7E7345;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.detail-page-index .game-right .favorite:hover:not(.save-favorite) {
  background-color: #FCE58A;
}
.detail-page-index .game-right .favorite .col2 {
  display: none;
}
.detail-page-index .game-right .favorite .col3 {
  display: block;
}
.detail-page-index .game-right .favorite .loading {
  height: 16px;
  width: 16px;
  display: none;
  animation: rotate 0.8s linear infinite;
}
.detail-page-index .game-right .favorite .hide {
  display: none;
}
.detail-page-index .game-right .save-favorite {
  color: #EA8101;
}
.detail-page-index .game-right .save-favorite .col2 {
  display: block;
}
.detail-page-index .game-right .save-favorite .col3 {
  display: none;
}
.detail-page-index .game-right .save-favorite .hide {
  display: none;
}
.detail-page-index .game-right .header-img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
}
.detail-page-index .game-right .game-description {
  font-size: 16px;
  color: #222222;
}
.detail-page-index .game-right .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-page-index .game-right .tags .tags-item {
  padding: 4px 12px;
  border-radius: 4px;
  background-color: #fff;
  font-size: 12px;
  color: #61666D;
  cursor: pointer;
}
.detail-page-index .game-right .tags .tags-item:hover {
  background-color: #FFF3CC;
  color: #EA8101;
}
.detail-page-index .game-right .vip-ad {
  padding: 4px 8px;
  background-color: #FAE9D8;
  border-radius: 8px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.detail-page-index .game-right .vip-ad .vip-tag {
  padding: 4px 8px;
  background-color: #352B20;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.detail-page-index .game-right .vip-ad .vip-tag span {
  background-image: linear-gradient(90deg, #FF8806 0%, #FFBB4E 100%);
  color: transparent;
  -webkit-background-clip: text;
}
.detail-page-index .game-right .vip-ad .vip-desc {
  flex: 1;
  color: #70471F;
  font-size: 12px;
  font-weight: 600;
}
.detail-page-index .game-right .vip-ad .vip-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #88591A 0%, #59340E 100%);
  gap: 4px;
  border-radius: 16px;
  padding: 4px 8px;
  color: #FBE8D6;
  font-size: 12px;
  cursor: pointer;
}
.detail-page-index .game-right .vip-ad .vip-btn:hover {
  background: linear-gradient(90deg, #59340E 0%, #88591A 100%);
}
.detail-page-index .game-right .price-info {
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-page-index .game-right .price-info .price-free {
  color: #27c4a4;
  font-size: 16px;
  font-weight: 600;
}
.detail-page-index .game-right .price-info .price-disconut {
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-page-index .game-right .price-info .discount-price-proportion {
  width: 40px;
  height: 20px;
  padding: 2px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  border-radius: 15px;
  background: #27c4a4;
}
.detail-page-index .game-right .price-info .price-final {
  color: rgba(0, 0, 0, 0.9);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
}
.detail-page-index .game-right .price-info .price-final .price-symbol {
  font-size: 12px;
}
.detail-page-index .game-right .price-info .price-original {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  text-decoration-line: line-through;
  line-height: 20px;
}
.detail-page-index .game-right .buy,
.detail-page-index .game-right .add-car {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background-color: #EA8101;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.detail-page-index .game-right .buy:hover,
.detail-page-index .game-right .add-car:hover {
  opacity: 0.7;
}
.detail-page-index .game-right .add-car {
  background-color: #FACC15;
}
.detail-page-index .game-right .details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-page-index .game-right .details .item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(0, 0, 0, 0.7098039216);
  font-size: 12px;
}
.detail-page-index .game-right .details .item .value {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  gap: 8px;
  align-items: center;
}
.detail-page-index .game-right .details .item .value .version-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #000;
}
.detail-page-index .game-right .details .item .value .game-version-line {
  height: 12px;
  width: 1px;
  background-color: #d9d9d9;
}
.detail-page-index .media-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 500px;
  /* 设置固定高度，根据实际需求调整 */
}
.detail-page-index .media-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  will-change: transform, opacity, visibility;
}
.detail-page-index .media-item:first-child {
  opacity: 1;
  visibility: visible;
}
.detail-page-index .media-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.detail-page-index .media-item video,
.detail-page-index .media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-page-index .media-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}
.detail-page-index .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  border: 1px solid rgb(235, 235, 235);
  transition: background-color 0.3s;
  color: #222222;
}
.detail-page-index .nav-btn:hover {
  border-color: rgb(234, 129, 1);
  color: rgb(234, 129, 1);
}
.detail-page-index .next {
  transform: rotate(-180deg);
}
.detail-page-index .abbreviate {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-page-index .abbreviate-container {
  width: 100%;
  flex: 1;
  overflow: hidden;
}
.detail-page-index .abbreviate-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}
.detail-page-index .abbreviate-img {
  flex: 0 0 80px;
  height: 57px;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid #fff;
  padding: 2px;
  position: relative;
}
.detail-page-index .abbreviate-img video {
  height: 100%;
  width: 100px;
}
.detail-page-index .img-warp {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.detail-page-index .img-warp .icon-svg {
  fill: rgb(234, 129, 1);
  height: 10px;
  width: 11px;
}
.detail-page-index .abbreviate-img.selected .img-warp {
  background-color: rgba(0, 0, 0, 0);
}
.detail-page-index .abbreviate-img.selected {
  border-color: #EA8101;
}
.detail-page-index .abbreviate-img img {
  width: 100px;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.detail-page-index .detail-tab-header {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.detail-page-index .detail-tab-header .tab-hedaer-item {
  position: relative;
  font-size: 24px;
  color: #838383;
  cursor: pointer;
  text-decoration: none;
}
.detail-page-index .detail-tab-header .tab-hedaer-item:hover {
  color: #000;
}
.detail-page-index .detail-tab-header .tab-selected {
  color: #000000;
  font-weight: 600;
}
.detail-page-index .detail-tab-header .tab-selected::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  height: 3px;
  width: 24px;
  border-radius: 999px;
  background-color: #EA8101;
}
.detail-page-index .detail-tab-content {
  margin-top: 32px;
}
.detail-page-index .detail-tab-content .tab-content-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-page-index .detail-tab-content .tab-content-title .num {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
}
.detail-page-index .detail-tab-content .tab-content-title .comment-tabs {
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.detail-page-index .detail-tab-content .tab-content-title .comment-tabs .comment-line {
  color: #CCCCCC;
  opacity: 0.5;
  width: 14px;
  text-align: center;
}
.detail-page-index .detail-tab-content .tab-content-title .comment-tabs .comment-tabs-select {
  color: #EA8101;
}

:root {
  --plyr-video-progress-buffered-background: rgba(255, 255, 255, 0.2);
  --plyr-range-track-height: 3px;
  --plyr-range-fill-background: #EA8101;
  --plyr-control-toggle-checked-background: none;
  --plyr-video-control-background-hover: none;
}

.plyr--video .plyr__progress__container {
  width: 100%;
  flex: initial !important;
}

.plyr--video .plyr__progress__buffer,
.plyr--video .plyr__tooltip {
  display: none;
}

.plyr__controls {
  flex-wrap: wrap;
  padding: 16px 40px !important;
  padding-bottom: 0 !important;
}

.plyr__volume {
  flex: 1;
}

.plyr__control[data-plyr=play] {
  margin-left: 0;
  padding: 16px 0;
  margin-right: 16px;
}

.plyr__control[data-plyr=fullscreen] {
  margin-left: 4px !important;
}

.plyr__control[data-plyr=fullscreen] {
  margin-left: 4px !important;
  padding-right: 0;
}

.plyr__time {
  margin-right: 16px;
}

.global-loading {
  cursor: not-allowed !important;
  pointer-events: none;
}
.global-loading::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 1.5px solid #FFFFFF;
  border-top-color: transparent;
  border-radius: 50%;
  animation: modal-button-spinner 0.8s linear infinite;
  box-sizing: border-box;
}

.global-loading-primary {
  cursor: not-allowed !important;
  pointer-events: none;
}
.global-loading-primary::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16;
  height: 16;
  margin-right: 8px;
  border: 1.5px solid #EA8101;
  border-top-color: transparent;
  border-radius: 50%;
  animation: modal-button-spinner 0.8s linear infinite;
  box-sizing: border-box;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}