/* 覆盖公共样式 */
html, body, #app {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body, ul, li, dl, dt, dd, p, h1, h2 {
  margin: 0;
  padding: 0;
}

ul,li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}
a:focus {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
input,
button,
select,
textarea{
  outline:none
}

#app ::-webkit-scrollbar {
  min-width: 0;
  width: 0;
}

#app .co-header .icon-left {
  font-size: 14px;
}

#app .co-actionsheet-list,
#app .co-actionsheet-button {
  margin: 0 10px;
}
#app .co-actionsheet-button {
  width: auto;
  margin-bottom: 10px;
}
#app .co-actionsheet-listitem, 
#app .co-actionsheet-button {
  height: auto;
  line-height: 2.5;  
}


#app .login-main-submit,
#app .register-main-submit,
#app .forget-main-submit { 
  padding: 0;
  width: 92%;
  width: calc(100vw - 20px);
  height: 44px;
  font-size: 16px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 40px;

  border-radius: 99px;
}

#app .login-main,
#app .register-main,
#app .forget-main {
  width: 100%;
  height: 100%;     

  padding-top: 30px;
}

#app .login-main-form,
#app .register-main-form,
#app .forget-main-form,
#app .wifi-main-form {
  border: 2px solid #DFDFDF;
  border-left-width: 0;
  border-right-width: 0;

  padding: 0 15px;
}

#app .form--field {  
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
#app .form--field:last-child {
  border-bottom: none;
}
#app .form--field input.field--ipt {
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 15px 30px;

  line-height: 1.5;
  vertical-align: middle;
}
#app .form--phone input.field--ipt {
  padding-right: 120px;
}
#app .form--field input.field--secret {
  position: absolute; 
  left: 0;
  top: 0;
}
#app .form--field .iconfont {
  font-size: 20px;
}
#app .form--field .field--left {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);  
}
#app .form--field .field--right {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);  
}