/* 首页 */
.banner {
  width: 100%;
  height: 100%;
}

.banner img {
  width: 100%;
  height: auto;
}

.overlay-slider {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.swiper1 {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.front-swiper {
  z-index: 20 !important;
}

.back-swiper {
  z-index: 10 !important;
}

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

/* 叠加效果 */
.front-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.front-swiper .swiper-slide-active {
  opacity: 1;
}

.back-swiper .swiper-slide {
  opacity: 1;
}

/* 产品分类 */
.products-box {
  background-color: #0c0c0c;
  padding: 15px 100px;
}

.products-box .products-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.products-box .products-list .products-item {
  border-bottom: 5px solid transparent;
  background-color: #222;
  color: #fff;
  border-radius: 10px;
  padding: 15px 35px;
  font-size: 34px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.products-box .products-list .products-item span {
  line-height: 51px;
}

.products-box .products-list .products-item:hover {
  border-bottom: 5px solid #E02783;
}

.products-box .products-list .products-select {
  border-bottom: 5px solid #E02783;
}

/* 产品列表 */
.shop-box {
  padding: 20px 0;
  width: 100%;
  box-sizing: border-box;
}

.shop-box .shop-list {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shop-box .shop-list .shop-item {
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
}

.shop-box .shop-list .shop-item .products-tag {
  position: absolute;
  z-index: 1;
  max-width: 60px;
  max-height: 70px;
  left: 0;
}

.shop-box .shop-list .shop-item .shop-img {
  display: inline-block;
  height: 350px;
  box-shadow: none;
  width: 100%;
}

.shop-box .shop-list .shop-item .shop-img img {
  width: 100%;
  height: 100%;
}

.shop-box .shop-list .shop-item .shop-title {
  display: inline-block;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
}

.shop-box .shop-list .shop-item .shop-title:hover {
  color: #E02783;
}

.shop-box .shop-list .shop-item .shop-img .img-one {
  display: block;
}

.shop-box .shop-list .shop-item .shop-img .img-two {
  display: none;
}

.shop-box .shop-list .shop-item:hover .img-one {
  display: none;
}

.shop-box .shop-list .shop-item:hover .img-two {
  display: block;
}

.shop-bg {
  margin-top: 20px;
  background-image: url('/static/images/shop-bg.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px;
  min-height: 300px;
}

/* 热销产品 */
.hot-box {
  padding: 20px 0;
  background-color: #0c0c0c;
}

.hot-box .hot-title .stroke_text {
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #fff0;
  text-align: center;
  width: 100%;
  font-size: 70px;
  font-weight: 800;
}

.hot-box .hot-title .hot-border {
  width: 100px;
  margin: 0 auto;
  border-block-start: 3px solid #fff;
}

.hot-box .hot-remark {
  margin: 10px 0;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}

.hot-box .hot-btn-box {
  width: 100%;
  margin: 15px 15px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hot-box .hot-btn-box .hot-btn {
  background-color: #E02783;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  fill: #FFF;
  color: #FFF;
  border-radius: 50px;
  padding: 12px 24px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hot-box .hot-btn-box .hot-btn span {
  font-size: 18px;
  color: #fff;
}

.hot-box .hot-btn-box .hot-btn:hover {
  background-color: #fff;
  color: #E02783;
  cursor: pointer;
}

.hot-box .hot-btn-box .hot-btn:hover span {
  color: #E02783;
}

.hot-box .hot-btn-box .hot-btn:hover i {
  color: #E02783 !important;
}

.hot-box .hot-shop-box {
  margin-top: 20px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.hot-box .hot-shop-box .hot-shop-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.hot-box .hot-shop-box .hot-shop-list .hot-shop-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  border-right: 1px solid #666;
}

.hot-box .hot-shop-box .hot-shop-list .hot-shop-item .hot-shop-img {
  display: block;
  padding: 10px;
  height: 300px;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

.hot-box .hot-shop-box .hot-shop-list .hot-shop-item .hot-shop-img img {
  width: 100%;
  height: 100%;
  transform: scale(91%);
}

.hot-box .hot-shop-box .hot-shop-list .hot-shop-item .hot-shop-title {
  margin-top: 15px;
  padding: 9px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hot-box .hot-shop-box .hot-shop-list .hot-shop-item .hot-shop-title a {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-top: 0;
}

.hot-box .hot-shop-box .hot-shop-list .hot-shop-item:hover .hot-shop-img img {
  transform: scale(1);
}

.hot-box .hot-shop-box .hot-shop-list .hot-shop-item:hover .hot-shop-title {
  background-color: #df2782;
  color: #fff;
}

.home-bg {
  background-image: url(/static/images/home1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px;
  min-height: 550px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.home-bg .home-bg-text {
  position: absolute;
  top: 10px;
  left: 20px;
}

.home-bg .home-bg-text p {
  font-size: 80px;
  color: #fff;
}

.home-bg .home-bg-text .home-bg-content a {
  font-size: 36px;
  color: #fff;
}

/* 公司简介 */
.home-video {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 50px;
  background-color: #0c0c0c;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.home-video .home-video-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 45%;
  padding-top: 40px;
}

.home-video .home-video-left .home-video-left-title {
  font-size: 28px;
  color: #fff;
}

.home-video .home-video-left .home-video-left-content {
  font-size: 20px;
  color: #fff;
  margin-top: 20px;
}

.home-video .home-video-left .home-video-left-content p {
  font-size: 18px;
  line-height: 28px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-video .home-video-middle {
  width: 48%;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 40px;
}

.home-video .home-video-right {
  width: 7%;
}

.home-video .home-video-right .home-video-right-text {
  display: flex;
  width: 100%;
}

.home-video .home-video-right .home-video-right-text .home-video-right-one {
  font-size: 41px;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.home-video .home-video-right .home-video-right-text .home-video-right-two {
  font-size: 64px;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #fff0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.home-about {
  background-color: #0c0c0c;
  padding: 20px 50px;
  width: 100%;
  box-sizing: border-box;
}

.home-about .home-btn {
  background-color: #E02783;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  fill: #FFF;
  color: #FFF;
  border-radius: 40px;
  padding: 12px 24px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 180px;
}

.home-about .home-btn span {
  font-size: 18px;
  color: #fff;
}

.home-about .home-btn:hover {
  background-color: #fff;
  color: #E02783;
  cursor: pointer;
}

.home-about .home-btn:hover span {
  color: #E02783;
}

.home-about .home-btn:hover i {
  color: #E02783 !important;
}

.img-full {
  width: 100% !important;
  height: auto !important;
}

.home-about .home-about-list {
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
  background-color: #E02783;
  background-image: url(/static/images/home-about.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 15px;
}

.home-about .home-about-list .about-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-about .home-about-list .about-item .about-num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.home-about .home-about-list .about-item .about-num span {
  font-size: 56px;
  color: #fff;
}

.home-about .home-about-list .about-item .about-num .about-unit {
  font-size: 24px;
  margin: 10px 3px;
  color: #fff;
}

.home-about .home-about-list .about-item .about-name {
  font-size: 20px;
  color: #fff;
  line-height: 20px;
}

.home-about .home-about-list .about-line {
  width: 15px;
  height: 130px;
}

.support {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.classify-box {
  background-color: #0c0c0c;
  width: 100%;
  padding: 20px 50px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.classify-box .classify-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.classify-box .classify-list .classify-item {
  display: inline-flex;
  flex: 1;
  background-position: center center;
  background-size: cover;
  position: relative;
  min-height: 397px;
}

.classify-box .classify-list .classify-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.classify-box .classify-list .classify-item:hover::before {
  opacity: 0;
}

.classify-box .classify-list .classify-item:hover p {
  color: #000;
}

.classify-box .classify-list .classify-item p {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  font-size: 44px;
  color: #fff;
  text-transform: uppercase;
}

.video-box {
  background-color: #0c0c0c;
  padding: 30px 0;
  box-sizing: border-box;
  width: 100%;
}

.video-box .video-title {
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #fff0;
  text-align: center;
  width: 100%;
  font-size: 70px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-box .video-line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-box .video-line span {
  display: block;
  width: 111px;
  border-block-start: 3px solid #fff;
}


.video-swiper-container {
  position: relative;
  /* max-width: 1400px; */
  width: 100%;
  margin: 50px auto 0;
  /* 上下边距，水平居中 */
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  /* 占据剩余空间 */
}

/* 主轮播容器 */
.main-swiper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 600px;
  /* 明确设置高度 */
}

/* 视频幻灯片 */
.video-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
  height: 100%;
  /* 继承父容器高度 */
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 控制栏容器 */
.controls-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
  min-height: 60px;
  /* 确保控制栏有足够高度 */
}

/* 左侧分页器 */
.custom-pagination {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pagination-bullet {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* border: 2px solid transparent; */
}

.pagination-bullet::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, #ff6b6b, #4ecdc4); */
  border-radius: 50%;
  transition: left 0.3s ease;
}

.pagination-bullet.active {
  /* transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.5); */
  width: 50px !important;
  background-color: #E02783;
  border-radius: 6px !important;
}

.pagination-bullet.active::before {
  left: 0;
}

.pagination-bullet:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.5);
}

/* 右侧导航按钮 */
.custom-navigation {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: #E02783;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.nav-btn:hover {
  background: #fff;
  transform: scale(1.1);
  color: #E02783;
}

.nav-btn:active {
  transform: scale(0.95);
}

.custom-navigation .more-btn {
  border-radius: 60px;
  background-color: #E02783;
  fill: #fff;
  padding: 13px 25px;
}

.custom-navigation .more-btn:hover {
  background-color: #fff;
}

.custom-navigation .more-btn:hover a {
  color: #E02783;
}

.custom-navigation .more-btn a {
  font-size: 15px;
  color: #fff;
  fill: #fff;
  text-transform: uppercase;
}

/* 视频信息 */
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px;
  color: white;
}


.video-description {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.5;
}

/* 分页器数字指示 */
.pagination-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.current-slide {
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.total-slides {
  color: rgba(255, 255, 255, 0.5);
}



/* 响应式设计 */
@media (max-width: 768px) {
  .video-swiper-container {
    margin: 20px auto;
  }

  .main-swiper {
    height: 400px;
    margin-bottom: 20px;
  }

  .controls-container {
    padding: 0 15px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }


  .pagination-info {
    margin-left: 15px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .main-swiper {
    height: 300px;
  }

  .controls-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .custom-pagination {
    order: 2;
  }

  .custom-navigation {
    order: 1;
  }

  .pagination-info {
    margin-left: 10px;
  }
}

/* 评论 */
.review {
  width: 100%;
  padding: 0 20px 20px;
  box-sizing: border-box;
  background-color: #0c0c0c;
}

.review .review-title {
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #fff0;
  text-align: center;
  width: 100%;
  font-size: 70px;
  font-weight: 800;
  text-transform: uppercase;
}

.review .review-line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review .review-line span {
  display: block;
  width: 111px;
  border-block-start: 3px solid #fff;
}


/* 三列弹幕容器 - 垂直排列 */
.danmaku-columns {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
  margin-top: 30px;
}

/* 弹幕列 - 每列占满宽度 */
.danmaku-column {
  position: relative;
  border-radius: 15px;
  height: 150px;
  width: 100%;
  overflow: hidden;
}

/* .danmaku-column:hover {
  background: rgba(255, 255, 255, 0.08);
} */

/* 弹幕轨道 */
.danmaku-track {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

/* 弹幕项 - 左右布局 */
.danmaku-item {
  background-color: #222222;
  border-radius: 5px;
  padding: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 500px;
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* 左侧区域 - 头像和评分 */
.comment-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 60px;
  flex-shrink: 0;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* 星星评分 */
.star-rating {
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 14px;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.star.empty {
  color: rgba(255, 255, 255, 0.3);
}

/* 右侧区域 - 用户名和评论内容 */
.comment-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.username {
  font-size: 16px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

/* 评论内容 */
.comment-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  flex: 1;
}

.comment-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

.news {
  width: 100%;
  background-color: #14151d;
  padding: 20px 50px;
  box-sizing: border-box;
}

.news .news-title {
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #fff0;
  text-align: center;
  width: 100%;
  font-size: 70px;
  font-weight: 800;
  text-transform: uppercase;
}

.news .news-line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news .news-line span {
  display: block;
  width: 111px;
  border-block-start: 3px solid #fff;
}

/* 新闻轮播 */

.photo-swiper-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* 主轮播容器 */
.photo-main-swiper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  margin-top: 30px;
}

/* 照片幻灯片 */
.photo-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
  height: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.photo-slide .photo-image-box {
  height: 350px;
  overflow: hidden;
}

.photo-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 15px 15px 0 0;
  transition: all 0.7s ease-in-out;
  cursor: pointer;
}

/* 文本信息区域 */
.photo-info {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 15px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.photo-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.photo-description {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.photo-info .photo-more {
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #e02783;
  color: #fff;
  margin-top: 15px;
  transition: all 0.7s ease-in-out;
  width: 160px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}

.photo-info .photo-more .photo-more-iconfont {
  color: #fff;
  font-size: 16px;
  margin-left: 10px;
}

.photo-slide:hover {
  border: 2px solid #fff;
}

.photo-slide:hover .photo-image {
  transform: rotate(24deg) scale(1.5);
  /* transform: scale(1.1); */
}

.photo-slide:hover .photo-more {
  width: 100% !important;
}

/* 控制栏容器 */
.photo-controls-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  min-height: 60px;
}

/* 左侧分页器 */
.photo-pagination {
  display: flex;
  gap: 12px;
  align-items: center;
}

.photo-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #999;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.photo-pagination-bullet::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, #ff6b6b, #4ecdc4); */
  border-radius: 50%;
  /* transition: left 0.3s ease; */
}

.photo-pagination-bullet.active {
  width: 50px !important;
  background-color: #E02783 !important;
  border-radius: 6px !important;
}

.photo-pagination-bullet.active::before {
  left: 0;
}

.photo-pagination-bullet:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.5);
}

/* 右侧导航按钮 */
.photo-navigation {
  display: flex;
  gap: 30px;
}

.photo-nav-btn {
  width: 45px;
  height: 45px;
  background-color: #a6a6a9;
  backdrop-filter: blur(10px);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.news .news-btn {
  display: block;
  border-radius: 30px;
  background-color: #E02783;
  fill: #fff;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  padding: 14px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.news .news-btn:hover {
  background-color: #fff;
  color: #E02783;
}

.photo-nav-btn:hover {
  background-color: #e02783;
  transform: scale(1.1);
}

.photo-nav-btn:active {
  transform: scale(0.95);
}

/* 分页器数字指示 */
.photo-pagination-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.photo-current-slide {
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.photo-total-slides {
  color: rgba(255, 255, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .photo-slide {
    height: 320px;
  }

  .photo-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .photo-slide {
    height: 280px;
  }

  .photo-image {
    height: 180px;
  }

  .photo-controls-container {
    padding: 0 15px;
  }

  .photo-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .photo-title {
    font-size: 16px;
  }

  .photo-pagination-info {
    margin-left: 15px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .photo-slide {
    height: 250px;
  }

  .photo-image {
    height: 150px;
  }

  .photo-controls-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .photo-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .photo-pagination {
    order: 2;
  }

  .photo-navigation {
    order: 1;
  }

  .photo-pagination-info {
    margin-left: 10px;
  }
}

/* 移动端 */
@media (max-width:768px) {
  .products-box .products-list {
    flex-wrap: wrap;
  }

  .products-box {
    padding: 15px 15px !important;
  }

  .shop-box .shop-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hot-box .hot-shop-box .hot-shop-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hot-box .hot-shop-box .hot-shop-list .hot-shop-item .hot-shop-img {
    height: 150px !important;
  }

  .home-bg .home-bg-text p {
    font-size: 30px !important;
  }

  .home-bg .home-bg-text .home-bg-content a {
    font-size: 18px !important;
  }

  .home-video {
    padding: 10px !important;
    flex-direction: column;
    align-items: center;
  }

  .home-video .home-video-left {
    width: 100%;
  }

  .home-video .home-video-middle {
    width: 100%;
  }

  .home-video .home-video-middle .elementor-video {
    margin-top: 30px !important;
  }

  .home-video .home-video-right {
    width: 100%;
  }

  .home-video .home-video-right .home-video-right-text {
    display: block;
  }

  .home-video .home-video-right .home-video-right-text .home-video-right-one {
    writing-mode: unset;
    font-size: 30px;
  }

  .home-video .home-video-right .home-video-right-text .home-video-right-two {
    writing-mode: unset;
    font-size: 36px;
  }

  .home-about {
    padding: 10px !important;
  }

  .classify-box {
    padding: 10px !important;
    grid-template-columns: repeat(1, 1fr);
  }

  .video-box .video-title {
    font-size: 36px;
  }

  .review .review-title {
    font-size: 36px;
  }

  .danmaku-columns {
    gap: 0;
    margin-top: 10px;
  }

  .news .news-title {
    font-size: 36px;
  }

  .photo-controls-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .photo-navigation {
    margin-top: 10px;
  }

  .photo-slide .photo-image-box {
    height: 180px;
  }

  .photo-info {
    padding: 10px;
  }

  .home-video .home-video-left .home-video-left-content {
    font-size: 16px;
  }

  .overlay-slider {
    height: 300px;
  }

  .shop-box .shop-list .shop-item .shop-img img {
    height: auto;
    width: 100%;
  }

  .shop-box .shop-list .shop-item .shop-img {
    height: auto;
  }

  .products-box .products-list .products-item {
    padding: 10px 20px;
    font-size: 28px;
  }

  .products-box .products-list .products-item span {
    line-height: 28px;
  }

  .hot-box .hot-shop-box {
    padding: 0px;
  }

  .hot-box .hot-shop-box .hot-shop-list .hot-shop-item .hot-shop-img {
    padding: 0px;
  }

  .hot-box .hot-title .stroke_text {
    font-size: 35px;
  }

  .home-bg {
    min-height: 350px;
  }

  .home-about .home-btn {
    width: 140px;
    padding: 10px 20px;
    line-height: 18px;
  }

  .home-about .home-about-list {
    display: none;
  }

  .classify-box .classify-list .classify-item {
    min-height: 250px;
  }

  .danmaku-column {
    height: 150px;
  }
  .danmaku-item {
    padding: 10px;
  }
  .news{
    padding: 10px 15px;
  }
  .hot-box .hot-btn-box{
    margin: 15px 0;
  }
  .hot-box .hot-btn-box .hot-btn{
    line-height:22px;
  }
}