* {
  margin: 0;
  padding: 0;
}
#Peter {
  width: 100%;
  min-height: 100vh;
  margin: auto;
  max-width: 750px;
  position: relative;
  background: #660420;
}
#Peter .top {
  width: 100%;
  height: 10rem;
  background: #000;
  display: flex;
  color: #fff;
  align-items: center;
  /* 垂直方向居中对齐 */
}
#Peter .top .pic {
  width: 40%;
  text-align: center;
}
#Peter .top .pic img {
  width: 8rem;
}
#Peter .top .items {
  flex: 1;
}
#Peter .top .items .input {
  margin: 0.4rem 0;
}
#Peter .top .items .input .ipt {
  padding: 0.4rem;
  border-radius: 0.4rem;
  border: 0;
  width: 80%;
}
#Peter .top .items .input .ipt:focus {
  outline: none;
  /* 确保聚焦时也没有外边框 */
  box-shadow: none;
  /* 确保聚焦时也没有阴影 */
  border-color: transparent;
  /* 如果有默认边框颜色，设置为透明 */
}
#Peter .top .items .btn {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0.6rem;
  padding: 0.4rem;
  width: 80%;
}
#Peter .bigpic img {
  max-width: 100%;
}
/*# sourceMappingURL=Peter.css.map */