/* 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;
  padding-bottom: 0.8rem;
  background: url('../images/beijing.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.crazy_wrap_bg::-webkit-scrollbar {
  display: none;
  /* 隐藏滚动条 */
}

.crazy_wrap_top {
  width: 88%;
  margin: 0 auto;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crazy_wrap_top span {
  font-size: 0.5rem;
}

.crazy_top_right {
  display: flex;
  align-items: center;
  gap: 0.14rem;
}
.crazy_top_img {
  width: 0.6rem;
}

/* 应用图标 */
.crazy_app_icon {
  width: 40%;
  margin: 0 auto;
}

.crazy_app_icon img {
  width: 100%;
}

.crazy_bind_title {
  text-align: center;
  font-size: 0.46rem;
  letter-spacing: 2px;
  color: #5f5d5d;
  margin-top: 0.5rem;
}

/* 表单 */
.crazy_form {
  width: 84%;
  margin: 0 auto;
  margin-top: 0.24rem;
}

.crazy_input_group {
  margin-bottom: 0.2rem;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.crazy_input {
  width: 100%;
  height: 1rem;
  padding: 0 0.5rem;
  border-radius: 1rem;
  font-size: 0.28rem;
  font-weight: 360;
  color: #333333;
}

.crazy_input::placeholder {
  color: #8b8b8c;
  font-weight: 360;
  font-size: 0.26rem;
  letter-spacing: 1px;
}

/* 隐私政策 */
.crazy_privacy_section {
  margin: 0.6rem 0 0.3rem;
  padding: 0 0.2rem;
  text-align: left;
}

.crazy_checkbox_label {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  cursor: pointer;
  font-size: 0.28rem;
  line-height: 1.4;
  color: #666666;
}

.crazy_checkbox {
  width: 0.3rem;
  height: 0.3rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
  margin-top: 0.05rem;
  flex-shrink: 0;
  appearance: none;
  cursor: pointer;
}

.crazy_checkbox:checked {
  background-color: #e74c3c;
  border-color: #e74c3c;
  position: relative;
}

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

.crazy_checkbox_text {
  flex: 1;
  font-size: 0.24rem;
}

.crazy_privacy_link {
  color: #007bff;
  text-decoration: underline;
}

/* 注册按钮 */
.crazy_register_btn {
  width: 100%;
  height: 1rem;
  background-color: #e74c3c;
  color: #ffffff;
  border-radius: 5rem;
  font-size: 0.3rem;
  letter-spacing: 2px;
}

/* 底部 */
.crazy_footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  background-color: #ffffff;
}

.crazy_footer_item {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  cursor: pointer;
}

.crazy_footer_icon {
  width: 0.27rem;
}

.crazy_footer_text {
  font-size: 0.28rem;
  color: #999999;
}

.crazy_footer_divider {
  width: 1px;
  height: 0.3rem;
  background-color: #cccccc;
}
.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;
}
