body {
  background: #fff;
}

.container {}

.title {
  text-align: center;
  margin-top: 1.6rem;
  margin-bottom: 1rem;
  font-size: 0.6rem;
}

.header-wrap {
  width: 100%;
}

.header {
  position: relative;
  width: 100%;
  height: 3rem;
  text-align: center;
  line-height: 4rem;
  font-size: 0.7rem;
  color: #fff;
}

.header:after {
  width: 100%;
  height: 3rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  border-radius: 0 0 50% 50%;
  background: -o-linear-gradient(#FCCC77, #F9B640);
  background: -webkit-gradient(linear, left top, left bottom, from(#FCCC77), to(#F9B640));
  background: linear-gradient(#FCCC77, #F9B640);
}

.tab-wrap {
  width: 88%;
  margin: 1rem auto;
  background-color: #fff;
  padding: 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px 2px rgba(51, 51,51, 0.1);
          box-shadow: 0 0 20px 2px rgba(51, 51, 51, 0.1);
}

.login-wrap {
  padding: 0.5rem 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

}

.input-wrap {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  padding: 0.2rem 0.2rem 0.2rem 0.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #eee;
}

.login-wrap input {
  width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  /* margin-left: 0.3rem; */
  font-size: 0.32rem;
}

.input-wrap .img-wrap {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: .2rem;
}

.img-wrap img {
  width: 100%;
  height: 100%;
}

input::-webkit-input-placeholder {
  color: #bbb;
}

.forget-pw {
  color: #666;
  font-size: 0.25rem;
  padding-top: 0.1rem;
  text-align: right;
}

.login-btn {
  display: block;
  padding: 0.16rem;
  text-align: center;
  background: #F9B640;
  margin-top: 0.5rem;
  border-radius: 1rem;
  color: #fff;
}

/* 注册 */
.code-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #F9B640;
  border-radius: 20px;
  height: .5rem;
  font-size: 0.2rem;
  min-width: 82px;
  color: #F9B640;
}

.input-wrap .txt {
  width: 1.8rem;
  text-align: left;
}

.copyright {
  position: fixed;
  left: 0;
  bottom: 0;
  padding-bottom: 0.2rem;
  width: 100%;
  text-align: center;
  font-size: 0.2rem;
  color: #666;
}