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

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

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

.may_main {
  flex: 1;
  width: 100%;
  background: url('../images/xia.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-bottom: 1.8rem;
}
.may_main_title {
  text-align: center;
  font-size: 0.4rem;
  font-weight: bolder;
  padding: 0.5rem 0;
  color: #2b66d3;
}

.may_form_item {
  width: 84%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #322c2b;
  margin-bottom: 0.2rem;
}

.may_form_ipt {
  flex: 1;
  margin-top: 0.1rem;
  border-radius: 5px;
  display: flex;
  align-items: flex-end;
  align-items: center;
  padding: 0.2rem 0.3rem;
}

.may_form_icon {
  width: 0.45rem;
}
.may_form_item {
  padding-bottom: .1rem;
  border-bottom: 1px solid #e7e5f4;
}

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

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

.may_register_btn {
  width: 80%;
  margin: 0 auto;
  margin-top: 0.3rem;
  background-color: #0068DB;
  padding: 0.2rem;
  text-align: center;
  color: #fff;
  border-radius: 0.5rem;
}

.may_register_btn img {
  width: 100%;
}

.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;
}