/* 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 {
  max-width: 550px;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  padding-bottom: 1rem;
  background: url('../images/beijing.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 页面头部 */
.crazy_header_blk {
  width: 28%;
  margin: 0 auto;
  padding-top: 3rem;
}

.crazy_header_blk img {
  width: 100%;
}

/* 表单区域 */
.crazy_form_blk {
  width: 84%;
  margin: 0 auto;
  padding: 0.4rem 0.3rem;
  border-radius: 0.2rem;
  margin-top: 0.3rem;
}

.crazy_form_item {
  margin-bottom: 0.2rem;
}

.crazy_form_item:last-child {
  margin-bottom: 0;
}

.crazy_form_label {
  font-size: 0.28rem;
  color: #333333;
  margin-bottom: 0.15rem;
  letter-spacing: 1px;
  padding-left: 0.1rem;
}

.crazy_form_input_wrap {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  padding: 0.16rem 0.18rem;
  border-radius: 0.1rem;
}

.crazy_form_icon {
  height: 0.54rem;
  margin-right: 0.08rem;
}

.crazy_form_input {
  flex: 1;
  font-size: 0.28rem;
  color: #333333;
  background-color: transparent;
  letter-spacing: 1px;
  border: none;
  outline: none;
}

.crazy_form_input::placeholder {
  color: #b7b7b8;
  font-size: 0.28rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.crazy_form_toggle {
  height: 0.45rem;
  margin-left: 0.2rem;
}

.crazy_footer_text {
  text-align: center;
  font-size: 0.26rem;
  color: #333333;
  margin-top: 0.4rem;
  letter-spacing: 1px;
}

.crazy_footer_text span {
  text-decoration: underline;
  color: #c9332b;
}

/* 注册按钮 */
.crazy_submit_blk {
  width: 100%;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.crazy_submit_btn {
  width: 100%;
  height: 0.8rem;
  background: url('../images/zhucr.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #ffffff;
  font-size: 0.36rem;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
}

/* 底部按钮 */
.crazy_footer_blk {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.26rem;
}

.crazy_footer_btn {
  width: 35%;
}
