/* 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: 1rem;
}

.may_tag_blk {
  position: absolute;
  right: 0;
  top: 1.2rem;
  height: 0.66rem;
}

.may_tag_blk img {
  height: 100%;
}

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

.may_logo_blk img {
  width: 100%;
}

/* 表单区域 */
.may_form_blk {
  width: 88%;
  margin: 0 auto;
  margin-top: 0.3rem;
  padding: 0 0.25rem 0.4rem;
  position: relative;
}

/* 表单项 */
.may_form_item {
  margin-bottom: 0.35rem;
}

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

.may_form_label {
  margin-bottom: 0.2rem;
  padding-left: 0.1rem;
}

/* 标签 */
.may_form_icon {
  width: 0.5rem;
}

/* 输入框 */
.may_form_input {
  width: 100%;
  font-size: 0.28rem;
  color: #333333;
  padding: 0.2rem;
  border: none;
  outline: none;
  line-height: 1.5;
  background: url('../images/shuru.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

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

/* 注册按钮区域 */
.may_submit_blk {
  margin-top: 0.45rem;
  color: #fefefe;
  font-size: 0.3rem;
  line-height: 0.88rem;
  letter-spacing: 1px;
  text-align: center;
  background: url('../images/denglu.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.may_tab_btns {
  width: 70%;
  margin: 0 auto;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0 0.12rem;
}

.may_tab_btn {
  font-size: 0.26rem;
  letter-spacing: 1px;
}

.may_tab_btn span {
  color: #4061f5;
  text-decoration: underline;
}
