/* 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;
  background: url('../images/beijing.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}

/* Logo区域 */
.crazy_logo_blk {
  width: 68%;
  margin: 0 auto;
  padding-top: 1.2rem;
}

.crazy_logo_blk img {
  width: 100%;
}

/* 表单区域 */
.crazy_form_blk {
  width: 82%;
  margin: 0 auto;
}

/* 标题 */
.crazy_title {
  font-size: 0.38rem;
  color: #fefefe;
  margin-top: 0.8rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  text-align: center;
  letter-spacing: 1px;
}

/* 表单项 */
.crazy_form_item {
  margin-bottom: 0.2rem;
}

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

/* 输入框容器 */
.crazy_form_input_wrap {
  display: flex;
  align-items: center;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0.16rem 0.2rem;
}

/* 标签 */
.crazy_form_label {
  font-size: 0.28rem;
  color: #fefefe;
  line-height: 1.4;
  padding-left: 4px;
  margin-bottom: 0.12rem;
}

/* 输入框 */
.crazy_form_input {
  flex: 1;
  font-size: 0.28rem;
  color: #333333;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  line-height: 1.5;
}

.crazy_form_input::placeholder {
  color: #aab6cd;
  font-size: 0.26rem;
  letter-spacing: 1px;
}

/* 注册按钮区域 */
.crazy_submit_blk {
  width: 82%;
  margin: 0 auto;
  margin-top: 0.35rem;
  color: #ffffff;
  font-size: 0.3rem;
  line-height: 0.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  background: url('../images/zhuce.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 协议区域 */
.crazy_agreement_blk {
  width: 82%;
  margin: 0 auto;
  margin-top: 0.4rem;
  text-align: left;
}

.crazy_agreement_label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.crazy_agreement_checkbox {
  width: 0.3rem;
  height: 0.3rem;
  margin-right: 0.15rem;
  margin-top: 0.02rem;
  flex-shrink: 0;
  border: 1px solid #fefefe;
  border-radius: 1rem;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
}

.crazy_agreement_checkbox:checked {
  background: #3a6edf;
  border-color: #3a6edf;
}

.crazy_agreement_checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 0.24rem;
  font-weight: bold;
}

.crazy_agreement_text {
  font-size: 0.24rem;
  color: #fefefe;
  line-height: 1.5;
}

.crazy_agreement_link {
  color: #fefefe;
  font-size: 0.26rem;
}

.crazy_bot_blk {
  margin-top: 0.66rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.crazy_return_icon {
  width: 2rem;
}
