1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- body{
- background: #ffffff;width: 100%;min-height: 100vh;padding-top: 0.6rem;box-sizing: border-box;
- }
- input{
- border: none;
- }
- /* toast */
- .alert-info {
- position: fixed;
- top: 1.74rem;
- right: 0;
- left: 0;
- bottom: 0;
- text-align: center;
- z-index: 9;
- }
- .alert-info p {
- display: inline-block;
- height: 0.38rem;
- color: #fff;
- font-size: 0.14rem;
- line-height: 0.38rem;
- padding: 0 0.10rem;
- background-color: rgba(0, 0, 0, 0.7);
- border-radius: 5px;
- }
- .loading {
- position: fixed;
- top: 0;
- left: 0;
- display: none;
- width: 100%;
- height: 100vh;
- }
- .loading img {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- width: 0.3rem;
- height: 0.3rem;
- }
- /* 手机号注册 */
- .register{
- width: 100%;
- }
- .register .inputDiv{
- height: 0.6rem;width: 3rem;margin: auto;display: flex;align-items: center;border-bottom: 0.01rem solid #333;padding-top: 0.1rem;
- font-size: 0.16rem;
- }
- .register .inputDiv img{
- width: 0.18rem;height: 0.18rem;margin-right: 0.05rem;
- }
- .register .inputDiv .yzmButton{
- width: 0.76rem;height: 0.22rem;border-radius: 0.22rem;border: 0.01rem solid #1B82D2;color: #1B82D2;font-size: 0.12rem;
- background: transparent;
- }
- .register .inputDiv .yzmButtonActive{
- border-color: #ccc;color: #ccc;
- }
- .register .inputDiv input{
- flex: 1;
- }
- .register .registerButton{
- display: block; width: 1.89rem;line-height: 0.4rem;border: none;border-radius: 0.4rem;
- color: #fff;background: #1B82D2;font-size: 0.16rem;padding: 0;
- margin: auto;margin-top: 0.6rem;
- }
|