/* 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: url('../images/beijing.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: scroll;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.crazy_wrap_bg::-webkit-scrollbar {
  display: none;
  /* 隐藏滚动条 */
}

/* 头部欢迎区域 */
.crazy_header_section {
  width: 60%;
  margin: 0 auto;
  margin-top: 1.5rem;
}

.crazy_header_section img {
  width: 90%;
}

/* 主内容区域 */
.crazy_main_content {
  flex: 1;
  width: 100%;
  padding: 0 6%;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.crazy_register_form {
  width: 100%;
}

/* 表单项目 */
.crazy_form_item {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-bottom: 1px solid #d54541;
}

.crazy_form_label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.crazy_field_icon {
  height: 0.4rem;
  margin-right: 0.1rem;
}

.crazy_form_label span {
  font-size: 0.28rem;
  color: #d54541;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.crazy_form_input {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.1rem 0.25rem 0.2rem;
}
.crazy_field_see {
  width: 0.4rem;
}

.crazy_form_input input {
  width: 100%;
  font-size: 0.28rem;
  letter-spacing: 0.5px;
}

.crazy_form_input input::placeholder {
  font-size: 0.28rem;
  color: #c9caca;
  letter-spacing: 0.5px;
}

/* 注册按钮 */
.crazy_register_btn {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.4rem;
  line-height: 0.9rem;
  text-align: center;
  font-size: 0.25rem;
  letter-spacing: 1px;
  color: #fefefe;
  background: url('../images/zhuce.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0.08rem;
}

/* 下载APP区域 */
.crazy_download_section {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
  padding-bottom: 0.4rem;
}
.crazy_download_item {
  display: flex;
  align-items: center;
  font-size: 0.24rem;
  gap: 0.2rem;
  color: #322c2b;
}

.crazy_download_item img {
  width: 0.5rem;
}

.crazy_page_bot {
  width: 100%;
  margin-top: auto;
}

.crazy_page_bot img {
  width: 100%;
}
