/* Reset所有元素的外边距和内边距 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* 清除所有链接的下划线 */
a {
  text-decoration: none;
}

ul {
  list-style: none;
  list-style-type: none;
  /* 去除项目符号 */
  padding: 0;
  /* 去除内边距 */
  margin: 0;
  /* 去除外边距 */
}

/* 移除按钮的默认样式 */
button,
input,
textarea,
select {
  border: none;
  outline: none;
  background: none;
  font: inherit;
}

/* 表格的边框清除 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 图片的默认边距清除 */
img {
  display: block;
  max-width: 100%;
}

.crazy_wrap_bg {
  width: 100%;
  max-width: 550px;
  min-height: 100vh;
  margin: 0 auto;
  background-position: center;
  overflow: scroll;
  background-image: url('../images/beijing.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: #fefefe;
  /* 保留滚动功能 */
  display: flex;
  flex-direction: column;
}

.crazy_wrap_bg::-webkit-scrollbar {
  display: none;
  /* 隐藏滚动条 */
}
.crazy_main {
  flex: 1;
  width: 88%;
  margin: 0 auto;
  margin-top: 7.2rem;
}

.crazy_tabs_blk {
  width: 68%;
  margin: 0 auto;
  margin-bottom: .3rem;
  text-align: center;
  font-size: 0.35rem;
  font-weight: bolder;
  letter-spacing: 1px;
}

.crazy_foot_txt {
  font-size: 0.22rem;
  letter-spacing: 1px;
  font-weight: 300;
}
.crazy_foot_txt span {
  color: #d33934;
  text-decoration: underline;
}

.crazy_form_item {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  color: #322c2b;
  margin-bottom: 0.2rem;
}

.crazy_form_ipt {
  width: 100%;
  margin-top: 0.1rem;
  border-radius: 5px;
  display: flex;
  align-items: flex-end;
  align-items: center;
  padding: 0.2rem 0.3rem;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.crazy_form_label {
  width: 100%;
  font-size: 0.27rem;
  margin-bottom: 5px;
  color: #322c2b;
  letter-spacing: 1px;
  font-weight: bold;
  padding-left: 0.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.crazy_form_item input {
  flex: 1;
  font-size: 0.27rem;
  overflow: hidden;
}

.crazy_form_item input::placeholder {
  font-size: 0.27rem;
  color: #c9caca;
  letter-spacing: 1px;
}

.crazy_register_btn {
  width: 88%;
  margin: 0 auto;
  line-height: 0.75rem;
  text-align: center;
  font-size: 0.3rem;
  font-weight: bolder;
  letter-spacing: 2px;
  color: #fefefe;
  background: url('../images/zhuce.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: 0.3rem;
}

.crazy_foot {
  width: 60%;
  margin: 0 auto;
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.crazy_foot span {
  margin: 0 0.2rem;
}
.crazy_bot_blk {
  width: 100%;
  margin-top: .45rem;
}
.crazy_head_bg img {
  width: 100%;
}
