html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
address,
em,
img,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
i,
b,
s,
input {
  margin: 0;
  padding: 0;
  border: 0;
}
ul,
li {
  width: 100%;
  list-style: none; /* 移除列表项的标记 */
  padding: 0; /* 移除列表项的内边距 */
  margin: 0; /* 移除列表的外边距 */
}
body {
  overflow: hidden;
}
a {
  cursor: pointer;
  text-decoration: none; /* 去除下划线 */
  color: inherit; /* 使用父元素的颜色 */
}
a:visited,
a:active,
a:hover {
  text-decoration: none; /* 确保各种状态下都无下划线 */
}

/* 声明书 */
.statement {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 666;
}
.statement-content {
  width: 86%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  box-sizing: border-box;
}
.statement-content > img {
  width: 100%;
  height: auto;
}
.statement-content .close {
  width: 1.4rem;
  height: auto;
  position: absolute;
  top: 0.8rem;
  right: 2.2rem;
  cursor: pointer;
}
.statement-content .close > img {
  width: 100%;
  height: auto;
}
/* 右侧悬浮框 */
.suspend {
  position: fixed;
  top: 24%;
  right: 0.6rem;
  transform: translateY(-50%);
  width: 4rem;
  height: auto;
  z-index: 666;
}
.suspend > img {
  width: 100%;
  height: auto;
}
/* 滚动主体 */
.hbyContainer {
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-image: url('http://www.baopiqishengzhajijia.com/dktm/cdn/pc_yx/bji.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: auto;
  -ms-overflow-style: none; /* IE 10+ */
  scrollbar-width: none; /* Firefox 64 */
}
/* 导航栏 */
.nav {
  display: flex;
  justify-content: center;
  align-items: start;
  position: absolute;
  width: 100%;
  height: 4rem;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 78%;
  margin-top: 0.6rem;
  box-sizing: border-box;
}
.nav .logo {
  width: 4rem;
  height: auto;
}
.logo > img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.nav-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 6rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}
.nav-list .navActive {
  color: #d61308; /* 字体颜色 */
}
.cooperation {
  display: flex;
  align-items: center;
  width: 6rem;
  margin-left: 2rem;
}
.cooperation-icon {
  width: 1rem;
  height: auto;
  margin-right: 0.2rem;
}
.cooperation-icon > img {
  width: 100%;
  height: auto;
}
.cooperation .cooperation-info {
  font-size: 0.5rem;
  color: #010eb4;
  font-weight: 700;
}
.cooperation-info .p1-8 {
  font-size: 0.6rem;
}

/* 首屏 */
.first-screen {
  position: relative;
  width: 100%;
  height: 22rem;
  background-image: url('http://www.baopiqishengzhajijia.com/dktm/cdn/pc_yx/first.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.first-screen .text {
  position: absolute;
  top: 10%;
  left: 4%;
  transform: translate(-50%, -50%);
  width: 12rem;
  height: auto;
  opacity: 0;
}
.first-screen .text > img {
  width: 100%;
  height: auto;
}
.textShow {
  animation: textMove 1s forwards; /* 添加动画 */
}

@keyframes textMove {
  0% {
    opacity: 0; /* 从透明到不透明 */
    transform: translateX(-100px) scale(0.8); /* 向左偏移并缩小 */
  }
  30% {
    opacity: 1; /* 完全不透明 */
    transform: translateX(30px) translateY(-20px) scale(1.1); /* 向右上偏移并放大 */
  }
  50% {
    transform: translateX(-10px) translateY(10px) scale(0.9); /* 向左下偏移并缩小 */
  }
  70% {
    transform: translateX(5px) translateY(-5px) scale(1); /* 向右上轻微回弹并恢复原始大小 */
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1); /* 回到原始位置 */
  }
}
.first-screen .hamburger {
  position: absolute;
  top: 34%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: auto;
  opacity: 0;
}
.first-screen .hamburger > img {
  width: 100%;
  height: auto;
}

.hamburgerShow {
  animation: popIn 0.8s forwards; /* 进入动画 */
}
@keyframes popIn {
  0% {
    transform: scale(0) rotate(0deg); /* 从0缩放，0度旋转 */
    opacity: 0; /* 从透明到不透明 */
  }
  50% {
    transform: scale(1.2) rotate(10deg); /* 放大到1.2，旋转10度 */
    opacity: 1; /* 完全不透明 */
  }
  100% {
    transform: scale(1) rotate(0deg); /* 恢复到原始大小，旋转回0度 */
    opacity: 1; /* 完全不透明 */
  }
}

/* 第二屏 炸鸡照亮 */
.shine {
  width: 60%;
  height: 22rem;
  margin: 0 auto;
  margin-top: -10.6rem;
  box-sizing: border-box;
}
.shine .shine-content {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('http://www.baopiqishengzhajijia.com/dktm/cdn/pc_yx/second.png?v=1.0');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.shine .shine-content .product,
.shine .shine-content .manual,
.shine .shine-content .food,
.shine .shine-content .realStuff {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 8.2rem;
  height: 8.2rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}
.product {
  top: 0%;
  left: 0%;
  animation: productShow 3s ease-in-out infinite; /* 添加动画 */
}

@keyframes productShow {
  0% {
    transform: translateY(0); /* 初始位置 */
  }
  50% {
    transform: translateY(-0.6rem); /* 向上移动0.6rem */
  }
  100% {
    transform: translateY(0); /* 回到初始位置 */
  }
}
.manual {
  top: -3%;
  left: 72%;
  animation: manualShow 6s ease-in-out infinite; /* 添加动画 */
}

@keyframes manualShow {
  0% {
    transform: translateY(0); /* 初始位置 */
  }
  50% {
    transform: translateY(-0.6rem); /* 向上移动0.6rem */
  }
  100% {
    transform: translateY(0); /* 回到初始位置 */
  }
}
.food {
  top: 58%;
  left: 6%;
  animation: foodShow 3s ease-in-out infinite; /* 添加动画 */
}

@keyframes foodShow {
  0% {
    transform: translateY(0); /* 初始位置 */
  }
  50% {
    transform: translateY(-0.6rem); /* 向上移动0.6rem */
  }
  100% {
    transform: translateY(0); /* 回到初始位置 */
  }
}
.realStuff {
  top: 56%;
  left: 64%;
  animation: realStuffShow 6s ease-in-out infinite; /* 添加动画 */
}

@keyframes realStuffShow {
  0% {
    transform: translateY(0); /* 初始位置 */
  }
  50% {
    transform: translateY(-0.6rem); /* 向上移动 */
  }
  100% {
    transform: translateY(0); /* 回到初始位置 */
  }
}
.shine-content .img {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 7.8rem;
  height: 7.8rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 4px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.shine-content .img .mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  opacity: 0;
  z-index: 3;
}
.shine-content .img .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.shine-content .img .text .f5 {
  font-size: 1.6rem;
  font-weight: 700;
}
.shine-content .img .text .f3-6 {
  font-size: 0.8rem;
  font-weight: 700;
}
.shine-content .productImg img,
.shine-content .manualImg img,
.shine-content .foodImg img,
.shine-content .realStuffImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .productImg . */
.shine-content .productImg {
  top: 1%;
  left: 0.8%;
  animation: productShow 3s ease-in-out infinite;
}
.shine-content .realStuffImg {
  top: 57%;
  left: 64.8%;
  animation: realStuffShow 6s ease-in-out infinite; /* 添加动画 */
}
.shine-content .manualImg {
  top: -2%;
  left: 72.8%;
  animation: manualShow 6s ease-in-out infinite; /* 添加动画 */
}
.shine-content .foodImg {
  top: 58.9%;
  left: 6.8%;
  animation: foodShow 3s ease-in-out infinite; /* 添加动画 */
}

/* 特效卡片 */
.section__works {
  width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  overflow: hidden;
}

/* 咏巷炸鸡优势 */
.advantage {
  width: 90%;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.advantage .topLogo {
  width: 12rem;
  height: auto;
  margin: 1.6rem auto;
}
.advantage .topLogo > img {
  width: 100%;
  height: auto;
}
.advantage .advantage-content {
  width: 100%;
  height: auto;
}
.advantage .advantage-content > img {
  width: 100%;
  height: auto;
}

/* 引爆流量 */
.flow {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.flow .topLogo {
  width: 12rem;
  height: auto;
  margin: 1.6rem auto;
}
.flow .topLogo > img {
  width: 100%;
  height: auto;
}
.flow .flow-content {
  width: 100%;
  height: auto;
  transform: translateY(-6rem);
}
.flow .flow-content > img {
  width: 100%;
  height: auto;
}

/* 门店展示 */
.store {
  width: 90%;
  height: auto;
  margin: 0 auto;
  margin-top: -6rem;
  box-sizing: border-box;
  position: relative;
}
.store .topLogo {
  width: 5rem;
  height: auto;
  margin: 1.6rem auto;
}
.store .topLogo > img {
  width: 100%;
  height: auto;
}
.swiper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  position: relative; /* 使小点相对于父元素定位 */
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 0.4rem; */
  color: #fff;
  transition: opacity 0.5s ease; /* 添加平滑过渡效果 */
}
.swiper-slide > img {
  width: 100%;
  height: auto;
}
.swiper-pagination {
  bottom: 0.6rem !important; /* 设置指示点的垂直位置 */
  text-align: center; /* 居中 */
  z-index: 3; /* 确保小点在最上层 */
}
/* 自定义分页器小点样式 */
.swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.1rem; /* 设置左右间距 */
  background-color: #fff; /* 默认分页器颜色 */
  opacity: 0.8;
  transition: width 0.3s ease;
}

/* 当前激活小点的样式 */
.swiper-pagination-bullet-active {
  width: 1.2rem; /* 当前小点更长 */
  border-radius: 0.2rem;
  background-color: #d61308; /* 当前小点颜色 */
}

/* 合作赋能 */
.empowering {
  width: 100%;
  height: auto;
  margin: 4rem auto 0;
  box-sizing: border-box;
  position: relative;
}
.empowering .topLogo {
  width: 11.2rem;
  height: auto;
  margin: 1.6rem auto;
}
.empowering .topLogo > img {
  width: 100%;
  height: auto;
}

.empowering .empowering-content {
  width: 100%;
  height: 70rem;
}

.empowering-content .empoweringText {
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.empowering-content .empoweringText .left {
  margin-right: 60rem;
}
.empoweringText p {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: normal;
  color: #fefffe;
  letter-spacing: 0.02em;
}
.left .left-top .red {
  font-size: 5rem;
  font-weight: 700;
  color: #e61f77;
}
.left .left-top .rem4-4 {
  font-size: 4.4rem;
  font-weight: 700;
}
.left .left-bottonm p {
  font-size: 1.4rem;
}
.empoweringText .right p {
  font-size: 2rem;
}
.empoweringPhotoWall {
  width: 70%;
  height: auto;
  margin: 6rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.empoweringPhotoWall .empoweringFlowImg {
  width: 22rem;
  height: auto;
}
.empoweringFlowImg > img {
  width: 100%;
  height: auto;
}
/* 照片墙 */
.empoweringPhotoWall .empoweringPhotoWall-content {
  overflow: hidden;
  flex: 1;
  height: 49rem;
  position: relative;
}

.empoweringPhotoWall-content .top {
  position: absolute;
  top: 0;
  right: 0;
}
.empoweringPhotoWall-content .bottom {
  position: absolute;
  top: 22rem;
  right: -10rem;
}

.empoweringPhotoWall-content .swiper-container {
  width: 80rem;
  height: 21rem;
  overflow: hidden;
}
.empoweringPhotoWall-content .bottom .swiper-container {
  width: 110rem;
  height: 21rem;
  overflow: hidden;
}
.empoweringPhotoWall-content .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}
.empoweringPhotoWall-content .swiper-container .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36rem;
  height: 21rem;
}
.empoweringPhotoWall-content .swiper-container .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 合作咨询 */
.consult {
  width: 100%;
  height: 30rem;
  margin: 4rem auto 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.consult .consultContent {
  width: 80%;
  height: auto;
  perspective: 1000px; /* 透视效果，使得卡片翻转时更有深度 */
  cursor: pointer;
  margin: 0 auto;
}
.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* 防止翻转时反面内容显示 */
  border-radius: 4%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.6rem;
  box-sizing: border-box;
  transition: transform 0.6s ease-in-out; /* 翻转动画 */
  position: relative;
}
.form-item {
  width: 80%;
  margin: 0.4rem 0;
}
.form-item p {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.02em;
  margin: 0.2rem 0;
}

.form-item input {
  width: 100%;
  height: 2.2rem;
  padding: 0 0.2rem;
  outline: none;
  border: none;
  background-color: #e5e5e5;
  color: #000;
  font-size: 0.8rem;
  border-radius: 0.3rem;
}
input::placeholder {
  color: #bfbfbf;
  font-size: 0.8rem;
}

textarea {
  width: 100%; /* 设置宽度 */
  height: 6rem; /* 设置高度 */
  outline: none; /* 去除边框 */
  resize: none; /* 禁止用户调整textarea大小 */
  border-radius: 0.3rem; /* 设置边框圆角 */
  border: 0.01rem solid #e5e5e5;
  padding: 0.4rem 0.4rem;
  font-size: 0.8rem; /* 设置字号 */
  color: #000; /* 设置文本颜色 */
  background-color: #e5e5e5; /* 设置背景颜色 */
  box-sizing: border-box;
}
textarea::placeholder {
  color: #bfbfbf;
  font-size: 0.8rem;
}
.form-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}
.form-submit button {
  width: 4rem;
  height: 2.2rem;
  line-height: 1.2rem;
  text-align: center;
  border: none;
  border-radius: 0.6rem;
  background-color: #d61308;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem auto;
  cursor: pointer;
}

/* 卡片正面 */
.front {
  background-color: #fff;
}

/* 卡片背面 */
.back {
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  transform: rotateY(180deg); /* 背面初始旋转 180 度，隐藏 */
}

/* 底部区域 */
.footer-content {
  width: 100%;
  height: 16rem;
  background-image: url('http://www.baopiqishengzhajijia.com/dktm/cdn/pc_yx/consult/bgi.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}

.footer-code {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.footer-code .code {
  margin: 0 0.4rem;
}
.footer-code .code-img {
  width: 4rem;
  height: 4rem;
  /* background-color: #fff; */
}
.footer-code .code-img > img {
  width: 100%;
  height: 100%;
}
.footer-code .code-text {
  width: 100%;
  text-align: center;
}
.footer-code .code-text .rem1-4 {
  font-size: 0.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-phone {
  display: flex;
  align-items: self-end;
  margin: 0.8rem auto 0;
}
.logo {
  width: 4rem;
  height: auto;
  margin-right: 1.6rem;
}
.logo > img {
  width: 100%;
  height: auto;
}
.phone .rem1-4 {
  font-size: 0.6rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}
.phone .rem1-8 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-remind {
  display: flex;
  align-items: center;
  margin: 0.6rem auto 0.2rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.footer-Recordnumber {
  display: flex;
  align-items: center;
  margin: 0.2rem auto;
  font-size: 0.6rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-Recordnumber a {
  color: #fff;
}

.cfff{
  background-color: #fff;
}