/* 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-position: center;
  overflow: scroll;

  /* 保留滚动功能 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

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

.crazy_head_bg {
  width: 100%;
}
.crazy_head_bg img {
  width: 100%;
}

.crazy_main {
  flex: 1;
  width: 100%;
  padding-bottom: 1rem;
  background: url('../images/xia.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.crazy_main_bg {
  width: 100%;
  padding-top: 0.6rem;
  height: 0.2rem;
  margin-top: -0.1rem;
  background-color: #f4f9fc;
}

.crazy_main_title {
  width: 100%;
  text-align: center;
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  top: -1rem;
}

.crazy_main_label {
  position: relative;
  top: -1rem;
  width: 100%;
  text-align: center;
  font-size: 0.28rem;
  margin-top: 0.15rem;
  letter-spacing: 2px;
  font-weight: 360;
}
.crazy_main_label span {
  color: #2343e3;
  text-decoration: underline;
}

.crazy_form_item {
  width: 88%;
  margin: 0 auto;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  padding: 0.2rem 0.25rem;
  color: #322c2b;
  gap: 0.2rem;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.crazy_form_item img {
  height: 0.55rem;
}

.crazy_form_label {
  width: 100%;
  font-size: 0.28rem;
  color: #fefefe;
  letter-spacing: 1px;
  font-weight: bold;
  padding-left: 0.1rem;
}

.crazy_form_item input {
  flex: 1;
  font-size: 0.27rem;
  overflow: hidden;
}

.crazy_form_item input::placeholder {
  font-size: 0.27rem;
  color: #c9caca;
  letter-spacing: 1px;
}

.crazy_register_btn {
  width: 88%;
  margin: 0 auto;
  height: 0.85rem;
  line-height: 0.85rem;
  text-align: center;
  font-size: 0.33rem;
  font-weight: bolder;
  letter-spacing: 2px;
  color: #fefefe;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 4rem;
  margin-top: 0.3rem;
  background: #2343e3;
}

.crazy_foot {
  width: 82%;
  margin: 0 auto;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crazy_foot_txt {
  text-align: center;
  font-size: 0.28rem;
  letter-spacing: 2px;
}
.crazy_foot_txt2 {
  color: #2343e3;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.crazy_foot_txt2 img {
  width: 0.25rem;
}
