/* 重置默认样式，简化版 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 最外层手机盒子 */
.phone-box {
  width: 375px;
  height: 812px;
  margin: 10px auto;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  /* 防止内部元素溢出 */
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #F9EEE4;
  /* z-index: -2; */
}

/* 状态栏（模拟顶部状态条） */
.status-bar {
  position: relative;
  width: 100%;
  height: 44px;
}

.status-bar img {
  position: absolute;
  top: 30%;
  left: 10px;
  /* z-index:100; */
}

/* 导航栏 */
.nav-bar {
  position: relative;
  height: 44px;
  text-align: center;
}

.nav-bar a {
  text-decoration: none;
  font-family: 'source-han-serif sc vf medium', serif;
  font-size: 16px;
  font-weight: 300px;
  color: rgba(151, 0, 2);
  position: relative;
  /* display: flex;
  display: inline;
  justify-content: center; */
  margin: auto 8px;
  z-index: 2;
}

.nav-bar .active {
  font-weight: 700;
  font-size: 18px;
}

.nav-bar img{
  position: absolute;
  left: 165px;
  top: -8px;
  z-index:1;
}

/* 正文内容 */
/* 标题 */
.content .bt {
  position: relative;
  margin: 33px auto;
  margin-left: 80px;
}

.content .bt p {
  display: inline;
  font-family: "Microsoft Yahei", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(151, 0, 2);
  position: relative;
  top: -2px;
}

/* 图片 */
.content .tp {
  position: relative;
  display: inline;
  margin: auto 30px;
  top: -20px;
}

.content .tp .t {
  position: relative;
  top: -60px;
}

.content .tp .t1 {
  position: relative;
  top: -60px;
  left: 85px;
}

.content .tp .bj {
  position: absolute;
  margin-top: 0;
  left: -10px;
  /* z-index: -1; */
  background-size: cover;
}

.content .tp .tu {
  position: relative;
  top: 75px;
  left: 40px;
  z-index: 1;
}

/* 选项标签 */
.bq {
  position: absolute;
  left: 70px;
  margin-top: 140px;
}

.bq a {
  position: relative;
  margin: auto 8px;
  /* display: inline; */
  text-decoration: none;
  font-family: "Microsoft Yahei", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
}

.bq a:first-child {
  margin-left: 0;

}

.bq .xz {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #970002;
  position: relative;
  left: 20px;
  top: 3px;
}

/* 点击制作 */
.zz {
  position: relative;
  left: 30%;
  top: 190px;
  width: 146px;
  height: 49px;
  border: 2px solid #970002;
  border-radius: 15px;
}

.zz a {
  position: absolute;
  left: 10px;
  top: 7px;
  text-decoration: none;
  color: #970002;
  font-family: 'source-han-serif sc vf medium', serif;
  font-size: 20px;
  font-weight: 700;
}

/* 标签栏 */
.footer {
  position: relative;
  margin-top: 226px;
  z-index: 101;
}

.footer img {
  background-size: cover;
  position: relative;
  left: -5px;
}

/* 图标 */
.footer .tab-bar {
  position: absolute;
  margin-top: -50px;
  left: 0px;
  /* align-items: center; 水平居中 */
  /* justify-content: center; 垂直居中 */
}

.footer .tab-bar .bar-item {
  display: flex;
  /* 改为Flex布局 */
  flex-direction: column;
  /* 垂直排列图片和文字 */
  align-items: center;
  /* 水平居中 */
  justify-content: center;
  /* 垂直居中 */
  display: inline-block;
  margin: 0px 31px;
  text-decoration: none;
  color: #970002;
}

.footer .bar-item img {
  width: 100%;
  height: 25px;
  background-size: cover;
}

.footer .bar-item:last-child img {
  margin-left: 5px;
}

.footer .bar-item p {
  color: rgba(151, 0, 2, 0.6);
  /* #970002 颜色 */
  font-family: 'source-han-serif sc vf medium', serif;
  /* 思源宋体 Medium */
  font-weight: 400;
  font-size: 10px;
  margin-left: 3px;
}

.footer .bar-item .active {
  margin-left: 2px;
  font-weight: 600;
  color: #970002;
}

.footer .bar-item:nth-child(2) p {
  margin-left: -2px;
}

/* 指示器 */
.home-container {
  position: relative;
  ;
  margin-top: -7px;
  height: 34px;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}

.home-container img {
  position: absolute;
  margin-top: 15px;
  left: 32%;
}