body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
div,
fieldset,
legend,
input,
textarea,
button,
select {
  margin: 0;
  padding: 0;
  outline: none;
  outline: 0;
  box-sizing: border-box;
  letter-spacing: 0;

  font-family: Arial;
  font-size: 14px;

  word-wrap: break-word; /* 或者使用 overflow-wrap: break-word; */
  white-space: normal; /* 或者使用 white-space: pre-wrap; 如果你需要保留换行和空格 */
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.own {
  position: relative;
}
.own .own-container {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
}
.own .own-container .own-li {
}

.own:hover .own-container {
  display: flex;
}

.f1 .swiperData .active {
  opacity: 1;
}

.f1 .swiperData2 {
  opacity: 0;
}

.productSwiper {
  position: relative;
}
.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

::-webkit-progress-bar {
  /* background-color: orange; */
}
::-webkit-progress-value {
  background-color: rgba(249, 115, 22);
}

.swiper-pagination-bullet-active {
  background-color: rgba(249, 115, 22) !important;
  width: 20px !important;
  border-radius: 100px !important;
}

[type="text"]:focus,
input:where(:not([type])):focus,
[type="email"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="week"]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
  transition: 0.3s all;
  outline: none !important;
  outline: 0 !important;
  border-color: rgba(249, 115, 22) !important;
  --tw-ring-shadow: none !important;
}

@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
}
@media (width>640px) {
  html {
    font-size: 16px;
  }
}

/* 商城独立站界面 */
.bubble {
  position: absolute;
  bottom: -20px;
  color: #f97316;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0);
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.2);
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.1);
}

@keyframes float-1 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.9;
    transform: translateY(-200px) translateX(30px);
  }

  100% {
    opacity: 0;
    transform: translateY(-250px) translateX(40px);
  }
}

@keyframes float-2 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.9;
    transform: translateY(-200px) translateX(-30px);
  }

  100% {
    opacity: 0;
    transform: translateY(-250px) translateX(-40px);
  }
}

@keyframes float-3 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.9;
    transform: translateY(-200px) translateX(20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-250px) translateX(25px);
  }
}

@keyframes float-4 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.9;
    transform: translateY(-200px) translateX(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-250px) translateX(-25px);
  }
}

@keyframes float-5 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.9;
    transform: translateY(-200px);
  }

  100% {
    opacity: 0;
    transform: translateY(-250px);
  }
}

.animate-float-1 {
  animation-name: float-1;
  animation-delay: 0s;
}

.animate-float-2 {
  animation-name: float-2;
  animation-delay: 1.6s;
}

.animate-float-3 {
  animation-name: float-3;
  animation-delay: 3.2s;
}

.animate-float-4 {
  animation-name: float-4;
  animation-delay: 4.8s;
}

.animate-float-5 {
  animation-name: float-5;
  animation-delay: 6.4s;
}
