html,
body {
  overflow-x: hidden; /* 禁用横向滚动 */
  width: 100%; /* 确保宽度为 100% */
  scroll-behavior: smooth;
}
body,
p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  width: 100%;
  list-style: none; /* 移除列表项的标记 */
  padding: 0; /* 移除列表项的内边距 */
  margin: 0; /* 移除列表的外边距 */
}
a {
  cursor: pointer;
  text-decoration: none; /* 去除下划线 */
  color: inherit; /* 使用父元素的颜色 */
}
a:visited,
a:active,
a:hover {
  text-decoration: none; /* 确保各种状态下都无下划线 */
  color: #d61308;
}
input {
  width: 26rem;
  height: 4rem;
  padding: 0 0.8rem;
  outline: none;
  border: none;
  background-color: #e5e5e5;
  color: #000;
  font-size: 1.4rem;
  border-radius: 0.6rem;
}
input::placeholder {
  color: #bfbfbf;
  font-size: 1.4rem;
}

textarea {
  width: 34rem; /* 设置宽度 */
  height: 20rem; /* 设置高度 */
  outline: none; /* 去除边框 */
  resize: none; /* 禁止用户调整textarea大小 */
  border-radius: 0.6rem; /* 设置边框圆角 */
  border: 0.01rem solid #e5e5e5;
  padding: 1.2rem 1.2rem;
  font-size: 1.4rem; /* 设置字号 */
  color: #000; /* 设置文本颜色 */
  background-color: #e5e5e5; /* 设置背景颜色 */
  box-sizing: border-box;
}
textarea::placeholder {
  color: #bfbfbf;
  font-size: 1.4rem;
}
/* 滚动条样式 */
/* 针对Webkit浏览器，如Chrome、Safari */
body::-webkit-scrollbar {
  display: none;
}

/* IE10+ */
body {
  -ms-overflow-style: none;
}
/* Firefox */
body {
  overflow: -moz-scrollbars-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: 82rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  box-sizing: border-box;
  opacity: 0; /* 初始状态为透明 */
  animation: slideIn 1.5s forwards; /* 1秒钟的淡入动画 */
}
/* 定义动画效果 */
@keyframes slideIn {
  0% {
    opacity: 0;
    /* transform: translateY(100%) rotate(15deg); 初始状态：底部并轻微旋转 */
  }
  60% {
    opacity: 0.8;
    /* transform: translateY(-10%) rotate(-5deg); 在中间阶段时，几乎到达目标位置并做轻微旋转 */
  }
  100% {
    opacity: 1;
    /* transform: translate(-50%, -50%) rotate(0); 最终位置：完全透明并恢复正常位置 */
  }
}
.statement-content > img {
  width: 100%;
  height: auto;
}
.statement-content .close {
  width: 4.6rem;
  height: auto;
  position: absolute;
  top: 2.2rem;
  right: 8rem;
  cursor: pointer;
}
.statement-content .close > img {
  width: 100%;
  height: auto;
}
/* 右侧悬浮框 */
.suspend {
  position: fixed; /* 固定位置，保持悬浮效果 */
  top: 50%; /* 垂直居中 */
  right: 1.2rem; /* 距离页面右边20px */
  transform: translateY(-50%); /* 确保元素自身居中 */
  width: 16rem;
  height: auto;
  z-index: 666;
  cursor: pointer;
}
.suspend > img {
  width: 100%;
  height: auto;
}
.hbyContainer {
  width: 100%;
  /* min-width: 100vw; */
  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 {
  position: absolute;
  width: 100%;
  height: 48rem;
  /* background-image: url('https://fz.iceball.com.cn/avif/hby/navBGI.avif'); */
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 12rem;
  box-sizing: border-box;
}
.logo {
  width: 16rem;
  height: auto;
}
.logo > img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-left: 10rem;
}
.nav-content .nav-a {
}
.nav-list .navActive {
  color: #d61308; /* 字体颜色 */
}
.cooperation {
  display: flex;
  align-items: center;
  width: 30rem;
}
.cooperation-icon {
  width: 4.2rem;
  height: auto;
  margin-right: 0.6rem;
}
.cooperation-icon > img {
  width: 100%;
  height: auto;
}
.cooperation .cooperation-info {
  font-size: 2rem;
  color: #010eb4;
  font-weight: 700;
}
.cooperation-info .p1-8 {
  font-size: 1.6rem;
}
/* 首屏 */
.first-screen {
  position: relative;
  width: 100%;
  height: 138vh;
  background-image: url('http://www.yongxiangzhaji.com/avif/first.avif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.first-screen .text {
  position: absolute;
  top: 6%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 44rem;
  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: 22%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 92rem;
  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: 80vh;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: -45rem;
}
.shine .shine-content {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('http://www.baopiqishengzhajijia.com/dktm/cdn/pc_yx/second.png');
  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: 46rem;
  height: 46rem;
  border: 0.3rem solid #fff;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
  /* height: auto; */
}
.product {
  top: 0%;
  left: 0%;
  animation: productShow 3s ease-in-out infinite; /* 添加动画 */
}

@keyframes productShow {
  0% {
    transform: translateY(0); /* 初始位置 */
  }
  50% {
    transform: translateY(-20px); /* 向上移动20px */
  }
  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(-20px); /* 向上移动20px */
  }
  100% {
    transform: translateY(0); /* 回到初始位置 */
  }
}
.food {
  top: 56%;
  left: 6%;
  animation: foodShow 3s ease-in-out infinite; /* 添加动画 */
}

@keyframes foodShow {
  0% {
    transform: translateY(0); /* 初始位置 */
  }
  50% {
    transform: translateY(-20px); /* 向上移动20px */
  }
  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(-20px); /* 向上移动20px */
  }
  100% {
    transform: translateY(0); /* 回到初始位置 */
  }
}

.shine-content .img {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 44rem;
  height: 44rem;
  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: 5rem;
  font-weight: 700;
}
.shine-content .img .text .f3-6 {
  font-size: 3.6rem;
  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.6%;
  animation: productShow 3s ease-in-out infinite;
}
.shine-content .realStuffImg {
  top: 57%;
  left: 64.6%;
  animation: realStuffShow 6s ease-in-out infinite; /* 添加动画 */
}
.shine-content .manualImg {
  top: -1.8%;
  left: 72.6%;
  animation: manualShow 6s ease-in-out infinite; /* 添加动画 */
}
.shine-content .foodImg {
  top: 57%;
  left: 6.6%;
  animation: foodShow 3s ease-in-out infinite; /* 添加动画 */
}

/* 特效卡片 */
.section__works {
  width: 90%;
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 6rem 30rem;
  overflow: hidden;
}
.section__works .side-scroll-wrapper {
  position: relative;
}
.section__works .cardItem {
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
  margin-bottom: 1.6rem;
}
.section__works .cardItem > img {
  width: 100%;
  height: auto;
}

/* 炸鸡优势 */
.advantage {
  width: 90%;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.advantage .topLogo {
  width: 46rem;
  height: auto;
  margin: 4rem auto;
}
.advantage .topLogo > img {
  width: 100%;
  height: auto;
}
.advantage .advantage-content {
  width: 100%;
  height: 220rem;
  margin-top: 4rem;
  position: relative;
}
.advantage-content .line:nth-child(1) {
  width: 82rem;
  position: absolute;
  top: 24%;
  left: 44%;
  transform: translate(-50%, -50%);
}
.advantage-content .line:nth-child(2) {
  width: 102rem;
  position: absolute;
  top: 54%;
  left: 45%;
  transform: translate(-50%, -50%);
}
.advantage-content .line:nth-child(3) {
  width: 80rem;
  height: auto;
  position: absolute;
  top: -2%;
  left: 2%;
}
.advantage-content .line:nth-child(4) {
  width: 80rem;
  height: auto;
  position: absolute;
  top: 34%;
  left: 54%;
}
.advantage-content .line:nth-child(5) {
  width: 106rem;
  height: auto;
  position: absolute;
  top: 58%;
  left: 2%;
  z-index: 2;
}
.advantage-content .line:nth-child(6) {
  width: 102rem;
  position: absolute;
  top: 82%;
  left: 46%;
  transform: translate(-50%, -50%);
}
.advantage-content .line:nth-child(7) {
  width: 80rem;
  height: auto;
  position: absolute;
  top: 90%;
  left: 56%;
}
.advantage-content .line:nth-child(8) {
  width: 14rem;
  height: auto;
  position: absolute;
  top: 28%;
  left: 42%;
}
.advantage-content .line:nth-child(9) {
  width: 14rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 12%;
}

.advantage-content .line:nth-child(1) > img,
.advantage-content .line:nth-child(2) > img,
.advantage-content .line:nth-child(3) > img,
.advantage-content .line:nth-child(4) > img,
.advantage-content .line:nth-child(5) > img,
.advantage-content .line:nth-child(6) > img,
.advantage-content .line:nth-child(7) > img,
.advantage-content .line:nth-child(8) > img,
.advantage-content .line:nth-child(9) > img {
  width: 100%;
  height: auto;
}

/* 引爆流量 */
.flow {
  width: 90%;
  height: 100vh;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.flow .topLogo {
  width: 40rem;
  height: auto;
  margin: 4rem auto;
}
.flow .topLogo > img {
  width: 100%;
  height: auto;
}
.flow .item {
  width: 52rem;
  height: auto;
  position: absolute;
  top: 12%;
  left: -6%;
}
.flow .item > img {
  width: 100%;
  height: auto;
}
.flow .item2 {
  width: 42rem;
  height: auto;
  position: absolute;
  top: 12%;
  left: 84%;
}
.flow .item2 > img {
  width: 100%;
  height: auto;
}
.flow .item3 {
  width: 66rem;
  height: auto;
  position: absolute;
  top: 88%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flow .item3 > img {
  width: 100%;
  height: auto;
}

.flow .evaluate {
  width: 40rem;
  height: auto;
  border-radius: 10rem;
  z-index: 3;
}
.flow .evaluate > img {
  width: 100%;
  height: auto;
}
.p1 {
  position: absolute;
  top: 74%;
  left: 22%;
  transform: translate(-50%, -50%);
}
.p2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p3 {
  position: absolute;
  top: 68%;
  left: 78%;
  transform: translate(-50%, -50%);
}

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

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

/* 合作赋能 */
.empowering {
  width: 90%;
  height: auto;
  margin: 10rem auto 0;
  box-sizing: border-box;
  position: relative;
}
.empowering .topLogo {
  width: 30rem;
  height: auto;
  margin: 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: #f4ec43;
}
.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: 100vh;
  margin: 10rem auto 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.consult .consultBgi {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -0.4rem;
  left: 0;
}
.consultBgi > img {
  width: 100%;
  height: auto;
}
.consult .consultContent {
  width: 70%;
  height: 50rem;
  margin: 0 auto;
  padding: 6rem;
  background-color: #fff;
  border-radius: 2rem;
  position: absolute;
  top: 30rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-sizing: border-box;
  display: flex;
}
.consultContent .consult-info {
  width: 41%;
  height: 100%;
  padding: 0px 6rem;
  box-sizing: border-box;
}
.consult-info .info p {
  font-size: 1.6rem;
  color: #000;
  font-weight: normal;
  letter-spacing: 0.02em;
  margin: 0.4rem 0;
}

.consult-info .info .rem4-2 {
  font-size: 4.2rem;
  font-weight: 700;
  color: #d61308;
  margin: 0.6rem 0;
}
.consult-info .info .rem1-4 {
  font-size: 1.4rem;
}
.consult-info .phone {
  margin-top: 14rem;
}
.consult-info .phone p {
  font-size: 1.8rem;
  color: #d61308;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.consult-info .phone .rem3-6 {
  font-size: 3.6rem;
  font-weight: 700;
}

.consultContent .consult-form {
  /* width: 50%; */
  height: 100%;
  padding: 0 6rem;
  box-sizing: border-box;
  display: flex;
  position: relative;
}
.consult-form .form-textarea {
  margin-left: 2rem;
}

.form-item p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.02em;
  margin: 0.8rem 0;
}
.consult-form .form-submit {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.consult-form .form-submit button {
  width: 12rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  border: none;
  border-radius: 2rem;
  background-color: #d61308;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.6rem auto;
  cursor: pointer;
}

/* 底部区域 */
.footer-content {
  position: absolute;
  width: 90%;
  height: 10rem;
  transform: translate(0, -16rem);
  z-index: 3;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-logo {
  width: 16rem;
  height: auto;
  margin: 0 0 0 28rem;
}
.footer-logo > img {
  width: 100%;
  height: auto;
}
.footer-phone {
  width: 18rem;
  margin-left: 2.2rem;
}
.footer-phone .rem1-4 {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-phone .rem1-8 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-remind {
  width: 22rem;
  margin-left: 10.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-remind .icon{
  width: 16rem;
  height: auto;
}
.footer-remind .icon > img {
  width: 100%;
  height: auto;
}
.footer-remind .recordNumber {
  margin-top: 1.2rem;
}
.footer-remind .recordNumber a {
  font-size: 1.4rem;
  color: #fff;
}
.footer-remind .rem1-2 {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-remind .rem1-4 {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.footer-remind .company{
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.footer-code {
  display: flex;
  align-items: center;
  margin-left: 12.4rem;
}
.footer-code .code {
  margin: 0 1.2rem;
}
.footer-code .code-img {
  width: 14rem;
  height: 14rem;
  background-color: #fff;
  border-radius: 0.6rem;
}
.footer-code .code-img > img {
  width: 100%;
  height: 100%;
}
.footer-code .code-text {
  width: 100%;
  text-align: center;
  margin-top: 0.4rem;
}
.footer-code .code-text .rem1-4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.cfff{
 background-color: #fff;
}