/* 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;
}

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

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

.crazy_header_section img {
  width: 90%;
}

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

.crazy_register_form {
  width: 100%;
}

/* 表单项目 */
.crazy_form_item {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

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

.crazy_field_icon {
  width: 0.45rem;
  margin-right: 0.1rem;
}

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

.crazy_help_link {
  position: absolute;
  right: 0;
  font-size: 0.25rem;
  color: #fefefe;
  letter-spacing: 1px;
}
.crazy_help_link a {
  color: #fcf150;
  text-decoration: underline;
}

.crazy_form_input {
  width: 100%;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0.08rem;
  padding: 0.2rem 0.25rem;
}

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

.crazy_form_input input::placeholder {
  font-size: 0.28rem;
  color: #fefefe;
  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.35rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #1e3a8a;
  background: url('../images/zhuce.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0.08rem;
}

/* 用户协议区域 */
.crazy_agreement_section {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.3rem;
}

.crazy_agreement_checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  font-size: 0.24rem;
  color: #fefefe;
  line-height: 1.4;
}

.crazy_checkbox_input {
  display: none;
}

.crazy_checkbox_mark {
  width: 0.25rem;
  height: 0.25rem;
  border: 1px solid #fefefe;
  border-radius: 0.02rem;
  margin-right: 0.1rem;
  margin-top: 0.02rem;
  flex-shrink: 0;
  position: relative;
}

.crazy_checkbox_input:checked + .crazy_checkbox_mark {
  background: #fefefe;
}

.crazy_checkbox_input:checked + .crazy_checkbox_mark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-size: 0.2rem;
  font-weight: bold;
}

.crazy_agreement_text {
  color: #fefefe;
  font-size: 0.23rem;
}

.crazy_agreement_link {
  color: #fefefe;
}

/* 下载APP区域 */
.crazy_download_section {
  width: 100%;
  text-align: center;
  margin-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.crazy_download_link {
  font-size: 0.24rem;
  color: #fefefe;
  text-decoration: underline;
  letter-spacing: 0.5px;
}

.foo {
  margin-top: 0.3rem;
  text-align: center;
  font-size: .32rem;
  font-weight: 500;
  line-height: .44rem;
  color: #303030;
}
.foo span{
  color: #ff7100;
  border-bottom: #ff7100 solid 1px;
}