.home {
  padding-top: 1.46rem;
  overflow: hidden;
  background: #181818;
}

.arrivalCard {
  cursor: pointer;
}

.arrivalFavorite {
  cursor: pointer;
}

.productDetailModal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: .5rem;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10.050000190734863px);
}

.productDetailModal[hidden] {
  display: none;
}

body.productDetailOpen {
  overflow: hidden;
}

.productDetailDialog {
  position: relative;
  width: min(10rem, 100%);
  height: calc(100vh - 1rem);
  /* overflow-y: auto; */
  padding: .26rem .2rem .45rem .5rem;
  border-radius: .2rem;
  background: #171717;
  color: #fff;
}

.productDetailDialog .scrollBox {
  height: calc(100% - .45rem);
  overflow-y: auto;
  padding-right: .4rem;
  margin-top: .27rem;
}

.productDetailDialog .scrollBox::-webkit-scrollbar {
  width: .05rem;
}

.productDetailDialog .scrollBox::-webkit-scrollbar-track {
  /* margin: .97rem 0; */
  border-radius: .1rem;
  background: #626262;
}

.productDetailDialog .scrollBox::-webkit-scrollbar-thumb {
  border-radius: .1rem;
  background: #9a9a9a;
}

.productDetailDialog h2 {
  padding-right: .35rem;
  color: #fff;
  font-size: clamp(16px, .24rem, 24px);
  font-weight: 700;
  line-height: .36rem;
}

.productDetailClose {
  position: absolute;
  top: .25rem;
  right: .25rem;
  width: .22rem;
  height: .22rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.productDetailClose::before,
.productDetailClose::after {
  position: absolute;
  top: .1rem;
  left: 0;
  width: .22rem;
  height: .02rem;
  background: #fff;
  content: '';
}

.productDetailClose::before {
  transform: rotate(45deg);
}

.productDetailClose::after {
  transform: rotate(-45deg);
}

.productDetailClose:hover::before,
.productDetailClose:hover::after {
  background: var(--yellow);
}

.productDetailMedia {
  position: relative;
  display: grid;
  height: 7.75rem;
  /* margin-top: .21rem; */
  place-items: center;
  overflow: hidden;
  border-radius: .1rem;
  background: #404040;
}

.productDetailMedia img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.productDetailFavorite {
  position: absolute;
  z-index: 1;
  top: .2rem;
  right: .2rem;
  width: .3rem;
  height: .3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.productDetailFavorite img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .2s ease;
}

.productDetailFavorite:hover img,
.productDetailFavorite.is-favorite img {
  filter: none;
}

.productDetailSpecs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .25rem .5rem;
  margin-top: .25rem;
  padding: .32rem .56rem;
  border-radius: .1rem;
  background: #2b2b2b;
}

.productDetailSpecs dl {
  min-width: 0;
}

.productDetailSpecs dt {
  color: #fff;
  font-size: clamp(12px, .16rem, 16px);
  line-height: .24rem;
}

.productDetailSpecs dd {
  margin-top: .09rem;
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  font-weight: 700;
  line-height: .27rem;
  overflow-wrap: anywhere;
}

.productDetailSupporting {
  margin-top: .26rem;
  height: 5.06rem;
  border-radius: .1rem;
}

.productDetailSupporting video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .productDetailModal {
    padding: .15rem;
  }

  .productDetailDialog {
    width: 100%;
    max-height: calc(80vh - .3rem);
    padding: .2rem;
    border-radius: .1rem;
  }

  .productDetailDialog h2 {
    line-height: .3rem;
  }

  .productDetailMedia {
    height: auto;
    aspect-ratio: 7 / 6;
  }

  .productDetailSpecs {
    grid-template-columns: repeat(2, 1fr);
    gap: .2rem;
    padding: .26rem;
  }
  .productDetailSpecs dd {
    line-height: initial;
  }

  .productDetailSupporting {
    height: 2rem;
  }
}

.hero {
  /*height: 7.33rem;*/
  height: auto;
  background: #050505;
}

.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homeHero .swiper-button-prev,
.homeHero .swiper-button-next {
  width: .5rem;
  height: .5rem;
  margin-top: -.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: #222;
}

.homeHero .swiper-button-prev::after,
.homeHero .swiper-button-next::after {
  font-size: clamp(14px, .2rem, 20px);
  font-weight: 700;
}

.homeHero .heroPrev {
  left: .73rem;
}

.homeHero .heroNext {
  right: .73rem;
}

.swiper-pagination.heroPagination {
  bottom: .38rem;
}

.heroPagination .swiper-pagination-bullet {
  width: .15rem;
  height: .15rem;
  margin: 0;
  opacity: .38;
  background: #f1f1f1;
}

.arrivalPagination .swiper-pagination-bullet {
  width: .15rem;
  height: .15rem;
  margin: 0;
  opacity: .38;
  background: #9b9b9b;
}

.heroPagination .swiper-pagination-bullet-active,
.arrivalPagination .swiper-pagination-bullet-active {
  background: var(--yellow);
  opacity: 1;
}

.classification {
  min-height: 9.6rem;
  padding: .83rem 0 1.5rem;
  background: linear-gradient(115deg, #191919 0%, #0c0c0c 60%, #202020 100%) center / cover;
}

.sectionTitle {
  margin: 0 auto;
  text-align: center;
}

.sectionTitle h1,
.sectionTitle h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(24px, .58rem, 58px);
  line-height: 1.1;
  font-weight: 700;
}

.sectionTitle p {
  margin-top: .05rem;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.5;
}

.categoryGrid {
  margin-top: .73rem;
  display: grid;
  grid-template-columns: 3.83rem 3.83rem 3.83rem 3.83rem;
  grid-template-rows: 2.57rem 2.57rem;
  gap: .23rem;
}

.category {
  min-height: 2.57rem;
  position: relative;
  border-radius: .08rem;
  overflow: hidden;
  background: #333;
  display: flex;
  align-items: flex-start;
  padding: .32rem .25rem;
  isolation: isolate;
  flex-direction: column;
}

.category::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
}

.category>img {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
}

.categoryTitle {
  color: #fff;
  font-size: clamp(14px, .24rem, 24px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .16rem;
}

.categoryLarge {
  flex-direction: row;
  align-items: flex-end;
  padding: .25rem;
}

.categoryLarge .categoryBadge {
  min-width: 1.61rem;
  padding: .1rem .2rem;
  border-radius: .25rem;
  background: #111;
  color: #fff;
  font-size: clamp(14px, .24rem, 24px);
  font-weight: 700;
  text-align: center;
  transition: background .25s, color .25s;
  margin: 0 auto;
}

.categoryWide {
  min-height: 0;
}

.categoryLearnMore {
  padding: .1rem .2rem;
  border-radius: .25rem;
  background: var(--yellow);
  color: #111;
  font-size: clamp(12px, .16rem, 16px);
  font-weight: 700;
  line-height: .24rem;
  opacity: 0;
  transform: translateY(.1rem);
  transition: opacity .25s ease, transform .25s ease;
}

.categoryLearnMore i {
  margin-left: .08rem;
  font-size: clamp(16px, .22rem, 22px);
  font-style: normal;
}

.categoryWide:hover::after {
  background: rgba(0, 0, 0, .48);
}

.categoryWide:hover .categoryLearnMore {
  opacity: 1;
  transform: translateY(0);
}

.categoryLarge:hover .categoryBadge {
  background: var(--yellow);
  color: #111;
}

.categoryDominator {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.categoryUsa {
  grid-column: 2;
  grid-row: 1;
}

.categoryEurope {
  grid-column: 3;
  grid-row: 1;
}

.categoryProfessional {
  grid-column: 2;
  grid-row: 2;
}

.categoryPromo {
  grid-column: 3;
  grid-row: 2;
}

.categoryMadOx {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.arrivals {
  min-height: 9.1rem;
  padding: .84rem 0 .7rem;
  background-image: linear-gradient(rgba(255, 238, 0, .1), rgba(255, 133, 0, .1)), url('../images/arrivals-background.jpg');
}

.arrivals .sectionTitle h2,
.why .sectionTitle h2 {
  color: #111;
}

.arrivals .sectionTitle p,
.why .sectionTitle p {
  color: rgba(0, 0, 0, .72);
}

.arrivalWrap {
  margin: .66rem auto .48rem;
  position: relative;
}

.arrivalsSwiper {
  width: 100%;
  padding-top: .2rem;
  padding-bottom: .63rem;
}

.arrivalCard {
   height: auto; 
  padding: .1rem;
  background: rgba(0, 0, 0, .95);
  border: .01rem solid #252525;
  border-radius: .08rem;
  color: #fff;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.arrivalCard:hover {
  transform: translateY(-.12rem);
  box-shadow: 0 .18rem .25rem rgba(115, 38, 0, .38);
}

.productImage {
  height: auto;
  background: #404040;
  border-radius: .08rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 7 / 6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productImage img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform .3s;
}

.arrivalCard:hover .productImage img {
  transform: scale(1.08);
}
.productinfo{
    padding: 0.25rem 0.14rem 0.18rem 0.2rem;
}
.arrivalCard h3 {
  height: .54rem;
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  /*line-height: 1.25;*/
  font-weight: 700;
}

.arrivalCard b {
     display: block;
    margin-top: .15rem;
    color: #fff;
    opacity: .8;
    font-size: clamp(14px, .18rem, 18px);
    font-weight: 400;
    margin-bottom: 0.18rem;
}

.arrivalCard p {
  margin-top: .08rem;
  color: rgba(255, 255, 255, .6);
  font-size: clamp(12px, .16rem, 16px);
  line-height: 1.35;
}

.badge {
  position: absolute;
  z-index: 2;
  top: -.07rem;
  right: -.07rem;
  width: .7rem;
  height: .7rem;
}

.badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arrivalFavorite {
  position: absolute;
  top: 3.43rem;
  right: .24rem;
  width: .3rem;
  height: .3rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.arrivalFavorite img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}

.arrivalCard .arrivalFavorite.active img {
  filter: none;
}

.arrivalArrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #111;
  color: #fff;
  margin-top: -.25rem;
}

.arrivalArrow::after {
  font-size: clamp(14px, .2rem, 20px);
  font-weight: 700;
}

.arrivalPrev {
  left: -.79rem;
}

.arrivalNext {
  right: -.79rem;
}

.arrivalPagination {
  bottom: 0;
}

.brands {
  min-height: 9.6rem;
  padding: .78rem 0 1.17rem;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(24, 24, 24, .75), rgba(24, 24, 24, .75)), url('/images/brands.png');
}

.sectionTitleLeft {
  margin-left: 0;
  text-align: left;
}

.brandMarks {
  display: grid;
  grid-template-rows: 1rem 1rem 1rem 1rem;
  gap: .22rem;
  z-index: 1;
  width: 12.7rem;
  height: 4.59rem;
  margin-top: .7rem;
}

.brandRow {
  display: grid;
  grid-template-columns: repeat(10, 1rem);
  align-items: start;
  gap: .3rem;
}
.brandRow:last-child a:last-child{
    width: 2.18rem;
    height: 1rem;
}
.brandMark {
  display: grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  transform-origin: center;
  transition: transform .3s ease;
}

.brandMark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brandMark:hover {
  z-index: 2;
  transform: translateY(-.08rem) scale(1.06);
}

.brandMarkFireball img {
  /* width: .82rem;
  height: .82rem; */
}

.brandMarkCody img {
  width: 2.18rem;
  height: auto;
}

.brandMapWrap {
      position: absolute;
    z-index: 0;
    top: 4.01rem;
    width: 12.88rem;
    height: 5.59rem;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 3.2rem;
}

.brandMap {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: .44;
}

.brandPin {
  position: absolute;
  display: block;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.brandPin::before {
  position: absolute;
  inset: .08rem;
  border-radius: inherit;
  content: '';
  background: #fff100;
  box-shadow: 0 0 .1rem rgba(255, 241, 0, .85);
}

.brandPin::after {
  position: absolute;
  inset: 0;
  background: #fff100;
  opacity: .44;
  border: .02rem solid rgba(255, 241, 0, .52);
  border-radius: inherit;
  content: '';
  animation: brandPinPulse 2.2s ease-out infinite;
}

.brandPinRed::after {
  background: #f42424;
}

.brandPinRed {
  width: .49rem;
  height: .49rem;
}

.brandPinRed::before {
  background: #f42424;
  box-shadow: 0 0 .1rem rgba(244, 36, 36, .9);
}

.brandPinRed::after {
  border-color: rgba(244, 36, 36, .55);
  animation-delay: .6s;
}

@keyframes brandPinPulse {

  0% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.9);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.outlineBtn {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-width: 1.9rem;
  padding: .13rem .27rem;
  margin-top: .67rem;
  color: var(--yellow);
  border: .01rem solid var(--yellow);
  border-radius: .5rem;
  font-size: clamp(14px, .18rem, 18px);
  transition: .3s;
}

.outlineBtn:hover {
  background: var(--yellow);
  color: #111;
}

.outlineBtn i {
  margin-left: .1rem;
  font-style: normal;
  color: inherit;
}

.verticalBrand {
  position: absolute;
  right: -.25rem;
  top: .18rem;
  color: rgba(255, 255, 255, .1);
  font-size: clamp(100px, 2rem, 200px);
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  opacity: 0.1;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%, rgba(255, 255, 255, 0.00) 100.01%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why {
  min-height: 8.66rem;
  padding: .65rem 0 1.38rem;
  background-image: url(../images/why-preview.png);
}

.whyList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .56rem;
  margin-top: .82rem;
}

.whyItem {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 4.45rem;
  padding: .7rem .45rem .45rem;
  background: #080808;
  border: .01rem solid #202020;
  border-radius: .08rem;
  text-align: center;
  transition: transform .3s;
}

.whyBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
  transition: opacity .3s ease, transform .45s ease;
}

.whyItem::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: '';
  background: rgba(0, 0, 0, .66);
  opacity: 0;
  transition: opacity .3s ease;
}

.whyItem>*:not(.whyBackground) {
  position: relative;
  z-index: 2;
}

.whyItem:hover {
  transform: translateY(-.12rem);
}

.whyItem:hover .whyBackground,
.whyItem:hover::before {
  opacity: 1;
}

.whyItem:hover::before {
  z-index: 2;
}

.whyItem:hover .whyBackground {
  transform: scale(1.04);
}

.whyIcon {
  display: grid;
  height: .8rem;
  place-items: center;
}

.whyIcon img {
  display: block;
  width: .8rem;
  height: .8rem;
  object-fit: contain;
}

.whyItem h3 {
  color: #fff;
  margin: .25rem 0 .28rem;
  font-size: clamp(16px, .24rem, 24px);
  font-weight: 700;
}

.whyItem p {
  color: rgba(255, 255, 255, .64);
  font-size: clamp(12px, .16rem, 16px);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .home {
    padding-top: 1.08rem;
  }

  .hero {
    height: auto;
  }

  .hero .swiper-slide img {
    height: auto;
  }

  .homeHero .swiper-button-prev,
  .homeHero .swiper-button-next {
    display: none;
  }

  .classification {
    padding-bottom: .7rem;
  }

  .categoryGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 2.3rem);
    gap: .12rem;
  }

  .categoryDominator,
  .categoryUsa,
  .categoryEurope,
  .categoryProfessional,
  .categoryPromo,
  .categoryMadOx {
    grid-column: auto;
    grid-row: auto;
  }

  .arrivalWrap {
    width: 94%;
  }

  /* 手机端：隐藏分页小点，箭头移到产品下方居中、两个挨在一起（轮播效果不变） */
  .arrivalPagination {
    display: none;
  }

  .arrivalArrow {
    top: auto;
    bottom: 0;
    transform: none;
    margin-top: 0;
  }

  .arrivalPrev {
    left: 50%;
    right: auto;
    margin-left: calc(-.5rem - .025rem);
  }

  .arrivalNext {
    right: 50%;
    left: auto;
    margin-right: calc(-.5rem - .025rem);
  }

  .brands {
    min-height: auto;
    padding: .55rem 0 .7rem;
  }

  .brandMapWrap {
    top: 2.4rem;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1288 / 559;
  }

  .brandMap {
    opacity: .28;
  }

  .brandMarks {
    display: flex;
    flex-direction: column;
    gap: .04rem;
    width: 100%;
    height: auto;
    z-index: 1;
    margin-top: .45rem;
  }

  .brandRow {
    grid-template-columns: repeat(5, 1fr);
    gap: .04rem;
  }

  .brandMark {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .brandMarkFireball img {
    /* width: 50%;
    height: 50%; */
    margin-left: 0.2rem;
  }

  .brandMarkCody img {
    width: 100%;
    height: 100%;
    margin-left: 0.5rem;
  }

  .outlineBtn {
    margin-top: .45rem;
  }

  .verticalBrand {
    display: none;
  }

  .whyList {
    grid-template-columns: repeat(2, 1fr);
    gap: .18rem;
  }

  .whyItem {
    min-height: 3.4rem;
    padding: .38rem .22rem;
  }

}

/* ===== 首页顶部 banner：769–1024px 小屏适配 =====
   修复：该区间 banner 高度被放大导致被头部挤压/裁切、首屏看不全。
   高度限制到约等于 banner 图比例且不超过一屏，减少左右裁切。 */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    height: min(2.9rem, 54vh);
  }

  .homeHero .swiper-button-prev {
    left: .3rem;
  }

  .homeHero .swiper-button-next {
    right: .3rem;
  }

  .swiper-pagination.heroPagination {
    bottom: .3rem;
  }
}

/* ===== 视频区域“网页全屏”(Web fullscreen) =====
   只把视频铺满浏览器窗口（CSS 实现），不调用浏览器原生 Fullscreen API，
   因此与 video 自带 controls 里的“普通全屏”互不影响。 */
.productDetailSupporting {
  position: relative;
}

.videoWebFullscreenBtn {
  position: absolute;
  top: .14rem;
  right: .14rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: .4rem;
  height: .4rem;
  padding: 0;
  border: 0;
  border-radius: .1rem;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.videoWebFullscreenBtn:hover,
.videoWebFullscreenBtn:focus-visible {
  background: rgba(0, 0, 0, .82);
  color: #fff000;
}

.videoWebFullscreenIcon {
  display: block;
  width: .2rem;
  height: .2rem;
  fill: currentColor;
  pointer-events: none;
}

.videoWebFullscreenIcon .videoWebFullscreenIconExit {
  display: none;
}

.videoWebFullscreenBtn[aria-pressed="true"] .videoWebFullscreenIconEnter {
  display: none;
}

.videoWebFullscreenBtn[aria-pressed="true"] .videoWebFullscreenIconExit {
  display: block;
}

.videoWebFullscreenTip {
  position: absolute;
  top: calc(100% + .08rem);
  right: 0;
  padding: .05rem .12rem;
  border-radius: .04rem;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  font-size: clamp(12px, .13rem, 14px);
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.videoWebFullscreenBtn:hover .videoWebFullscreenTip,
.videoWebFullscreenBtn:focus-visible .videoWebFullscreenTip {
  opacity: 1;
}

.videoWebFullscreenTip .videoWebFullscreenTipExit {
  display: none;
}

.videoWebFullscreenBtn[aria-pressed="true"] .videoWebFullscreenTipEnter {
  display: none;
}

.videoWebFullscreenBtn[aria-pressed="true"] .videoWebFullscreenTipExit {
  display: inline;
}

/* 网页全屏状态：弹窗本身就是全屏遮罩，这里让它整体铺满浏览器窗口 */
.productDetailModal.videoWebFullscreen {
  padding: 0;
}

.productDetailModal.videoWebFullscreen .productDetailDialog {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  padding: 0;
  border-radius: 0;
  background: #000;
}

.productDetailModal.videoWebFullscreen .productDetailDialog .scrollBox {
  height: 100%;
  margin-top: 0;
  padding-right: 0;
  overflow: hidden;
}

.productDetailModal.videoWebFullscreen .productDetailDialog h2,
.productDetailModal.videoWebFullscreen .productVideoMeta,
.productDetailModal.videoWebFullscreen .productDetailMedia,
.productDetailModal.videoWebFullscreen .productDetailSpecs {
  display: none;
}

.productDetailModal.videoWebFullscreen .productDetailSupporting {
  height: 100%;
  margin-top: 0;
  border-radius: 0;
}

.productDetailModal.videoWebFullscreen .productDetailSupporting video {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  background: #000;
  object-fit: contain;
}

/* 全屏时关闭按钮挪到左上角，避免与右上角的网页全屏按钮重叠 */
.productDetailModal.videoWebFullscreen .productDetailClose {
  top: .16rem;
  right: auto;
  left: .16rem;
  z-index: 5;
}

@media (max-width: 768px) {
  .videoWebFullscreenBtn {
    top: .1rem;
    right: .1rem;
    width: .6rem;
    height: .6rem;
    border-radius: .12rem;
  }
  
  .badge{
      width: 1.4rem;
      height: 1.4rem;
  }
  
  .arrivalFavorite{
        top: 5.7rem;
        right: .25rem;
  }

  .videoWebFullscreenIcon {
    width: .3rem;
    height: .3rem;
  }

  .videoWebFullscreenTip {
    display: none;
  }
}
