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

/* 页面容器 */
.may_wrap_bg {
  max-width: 550px;
  min-height: 100vh;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  overflow-x: hidden;
  background: url('../images/beijing.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-bottom: 1.3rem;
}

/* Logo区域 */
.may_logo_blk {
  width: 30%;
  margin: 0 auto;
  padding-top: 1rem;
}

.may_logo_blk img {
  width: 100%;
}

/* 标题 */
.may_title {
  font-size: 0.44rem;
  color: #f9ddaa;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

.may_title_label {
  font-size: 0.3rem;
  color: #b6b6b7;
  margin-bottom: 0.4rem;
  text-align: center;
  letter-spacing: 1px;
}

/* 表单区域 */
.may_form_blk {
  width: 84%;
  margin: 0 auto;
}
/* 表单项 */
.may_form_item {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  padding: 0.26rem 0.2rem;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

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

/* 图标 */
.may_form_icon {
  height: 0.45rem;
  margin-right: 0.2rem;
}

/* 标签 */
.may_form_label {
  font-size: 0.28rem;
  color: #999999;
  line-height: 1.4;
  margin-top: 0.1rem;
  padding-left: 0.7rem;
}

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

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

/* 注册按钮区域 */
.may_submit_blk {
  width: 84%;
  margin: 0 auto;
  margin-top: 0.35rem;
  color: #d33934;
  font-size: 0.36rem;
  line-height: 0.9rem;
  font-weight: bolder;
  letter-spacing: 2px;
  text-align: center;
  background: url('../images/dneglu.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 协议区域 */
.may_agreement_blk {
  width: 84%;
  margin: 0 auto;
  margin-top: 0.24rem;
  padding: 0 0.1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  font-size: 0.24rem;
  color: #fefefe;
  line-height: 1.5;
}

.may_agreement_label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.may_agreement_donlod {
  text-decoration: underline;
  letter-spacing: 1px;
}

.may_agreement_checkbox {
  width: 0.25rem;
  height: 0.25rem;
  margin-right: 0.15rem;
  flex-shrink: 0;
  border: 1px solid #fff;
  border-radius: 1rem;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
}

.may_agreement_checkbox:checked {
  background: #fbeac6;
  border-color: #fbeac6;
}

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

/* 帮助链接区域 */
.may_help_blk {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.26rem;
  color: #fefefe;
  letter-spacing: 1px;
}
