/* 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;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* 页面头部 */
.crazy_header_blk {
  width: 100%;
  margin: 0 auto;
}

.crazy_header_blk img {
  width: 100%;
}

.crazy_wrap_bot {
  flex: 1;
  padding-bottom: 0.8rem;
  background: url('../images/xia.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
/* 表单区域 */
.crazy_form_blk {
  width: 88%;
  margin: 0 auto;
  padding: 0 0.3rem;
  margin-top: 0.5rem;
}

.crazy_form_item {
  margin-bottom: 0.4rem;
}

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

.crazy_form_label {
  font-size: 0.28rem;
  color: #fefefe;
  margin-bottom: 0.1rem;
  font-weight: 330;
  letter-spacing: 1px;
}

.crazy_form_input_wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.12rem;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0.2rem 0.3rem;
}
.crazy_form_icon {
  height: 0.5rem;
}

.crazy_form_img {
  height: 0.5rem;
}

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

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

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

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

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

.crazy_checkbox_input {
  display: none;
}

.crazy_checkbox_mark {
  width: 0.33rem;
  height: 0.33rem;
  border: 1px solid #2f68f4;
  border-radius: 50%;
  /* 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: #2f68f4;
}

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

.crazy_agreement_text {
  color: #464443;
  font-size: 0.2rem;
}

.crazy_agreement_link {
  color: #2f68f4;
}

/* 注册按钮 */
.crazy_submit_blk {
  width: 88%;
  margin: 0 auto;
  padding: 0 0.3rem;
  margin-top: 0.4rem;
}

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

/* 底部按钮 */
.crazy_footer_blk {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  color: #322c2b;
  font-size: 0.26rem;
  letter-spacing: 1px;
}

.crazy_footer_blk p {
  height: 0.23rem;
  width: 1.3px;
  background-color: #322c2b;
}
