/* 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;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0.6rem;
  background: url('../images/beijing.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 页面头部 */
.may_header_blk {
  width: 40%;
  margin-left: auto;
  padding: 1rem 0.8rem 0.2rem 0;
}

.may_header_blk img {
  width: 100%;
}

/* 表单区域 */
.may_form_blk {
  width: 88%;
  margin: 0 auto;
  padding: 0.4rem 0.4rem 0.5rem;
  margin-top: 0.5rem;
  background: url('../images/baidi.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.may_remark_blk {
  width: 40%;
  margin-bottom: 0.5rem;
  padding: 0 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  white-space: nowrap;
  font-size: 0.4rem;
  font-weight: bolder;
  letter-spacing: 1px;
  text-align: center;
  color: #d33934;
  text-align: center;
}

.may_remark_blk p {
  width: 95%;
  margin: 0 auto;
  height: 0.06rem;
  border-radius: 5px;
  background-color: #d33934;
}

.may_form_item {
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

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

.may_form_input_wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.12rem;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0.23rem 0.4rem;
}

.may_form_icon {
  height: 0.8rem;
}

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

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

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

/* 注册按钮 */
.may_submit_blk {
  width: 100%;
  margin-top: 0.5rem;
}

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

/* 用户协议区域 */
.may_form_remark {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.3rem;
  padding: 0 0.3rem;
  font-size: 0.28rem;
  text-align: center;
  letter-spacing: 1px;
}

.may_form_remark span {
  color: #d33934;
  text-decoration: underline;
}

.may_copy_blk {
  width: 66%;
  margin: 0 auto;
  margin-top: 0.7rem;
}

.may_copy_blk img {
  width: 100%;
}

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

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